1//########################################################################
2// Build FrameworksVcnTests package
3//########################################################################
4
5package {
6    // See: http://go/android-license-faq
7    // A large-scale-change added 'default_applicable_licenses' to import
8    // all of the 'license_kinds' from "frameworks_base_license"
9    // to get the below license kinds:
10    //   SPDX-license-identifier-Apache-2.0
11    default_applicable_licenses: ["frameworks_base_license"],
12}
13
14android_test {
15    name: "FrameworksVcnTests",
16    srcs: [
17        "java/**/*.java",
18        "java/**/*.kt",
19    ],
20    platform_apis: true,
21    defaults: ["framework-connectivity-test-defaults"],
22    test_suites: ["device-tests"],
23    certificate: "platform",
24    static_libs: [
25        "androidx.test.rules",
26        "frameworks-base-testutils",
27        "framework-protos",
28        "mockito-target-minus-junit4",
29        "net-tests-utils",
30        "platform-test-annotations",
31        "services.core",
32        "service-connectivity-tiramisu-pre-jarjar",
33    ],
34    libs: [
35        "android.test.runner",
36        "android.test.base",
37        "android.test.mock",
38    ],
39}
40