blob: 41f73cd9c706b60355e0a90e569c6857035f6c6c [file] [log] [blame]
Benedict Wong5bf2f802020-10-27 18:30:50 -07001//########################################################################
2// Build FrameworksVcnTests package
3//########################################################################
4
Bob Badoure539dba2021-02-12 17:07:05 -08005package {
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
Benedict Wong5bf2f802020-10-27 18:30:50 -070014android_test {
15 name: "FrameworksVcnTests",
16 srcs: [
17 "java/**/*.java",
18 "java/**/*.kt",
19 ],
20 platform_apis: true,
21 test_suites: ["device-tests"],
22 certificate: "platform",
23 static_libs: [
24 "androidx.test.rules",
25 "frameworks-base-testutils",
26 "framework-protos",
27 "mockito-target-minus-junit4",
Cody Kesting90f27fc2020-12-15 15:27:49 -080028 "net-tests-utils",
Benedict Wong5bf2f802020-10-27 18:30:50 -070029 "platform-test-annotations",
30 "services.core",
31 ],
32 libs: [
Benedict Wong5bf2f802020-10-27 18:30:50 -070033 "android.test.runner",
34 "android.test.base",
35 "android.test.mock",
36 ],
37}