• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "packages_modules_ExtServices_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["packages_modules_ExtServices_license"],
8}
9
10android_test {
11    name: "ExtServicesUnitTests",
12
13    // Include all test java files.
14    srcs: ["src/**/*.java"],
15
16    libs: [
17        "android.test.runner",
18        "android.test.base",
19    ],
20
21    static_libs: [
22        "ExtServices-core",
23        "androidx.test.rules",
24        "compatibility-device-util-axt",
25        "mockito-target-extended-minus-junit4",
26        "androidx.test.espresso.core",
27        "truth-prebuilt",
28        "testables",
29        "testng",
30    ],
31    jni_libs: [
32        "libdexmakerjvmtiagent",
33        "libextservices_jni",
34        "libstaticjvmtiagent",
35    ],
36    test_suites: [
37        "general-tests",
38        "mts-extservices",
39        "automotive-tests",
40        "automotive-general-tests",
41    ],
42    min_sdk_version: "30",
43    sdk_version: "test_current",
44    compile_multilib: "both",
45}
46