• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright (C) 2017 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15//
16
17package {
18    default_applicable_licenses: ["Android-Apache-2.0"],
19}
20
21// The end-to-end integration test for vehicle HAL and car services that depends
22// on vehicle HAL. Test cases would use vehicle HAL debug interface to
23// setup vehicle HAL state and test car services' behavior.
24android_test {
25    name: "VehicleHalE2eTest",
26
27    srcs: ["src/**/*.java"],
28
29    platform_apis: true,
30
31    certificate: "platform",
32
33    optimize: {
34        enabled: false,
35    },
36
37    static_libs: [
38        "vehicle-hal-support-lib",
39        "androidx.test.rules",
40        "android.hardware.automotive.vehicle-V2-java",
41        "android.hardware.automotive.vehicle.property-V2-java",
42        "compatibility-device-util-axt",
43        "truth-prebuilt",
44    ],
45
46    libs: [
47        "android.car",
48        "android.test.runner",
49        "android.test.base",
50    ],
51}
52