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