blob: ef45864dd93be7f39d123d955ba1d84488d407f0 [file] [log] [blame]
Bob Badoure539dba2021-02-12 17:07:05 -08001package {
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 "frameworks_base_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_base_license"],
8}
9
Sasha Smundak89414e12019-03-10 19:48:23 -070010android_test {
11 name: "InternalTests",
12 proto: {
13 type: "nano",
14 },
15 // Include some source files directly to be able to access package members
16 srcs: ["src/**/*.java"],
17 libs: ["android.test.runner"],
18 static_libs: [
19 "junit",
20 "androidx.test.rules",
21 "mockito-target-minus-junit4",
Robert Snoebergera6684f62019-04-02 13:21:42 -040022 "truth-prebuilt",
Hongwei Wang6014caf2020-07-20 18:04:35 -070023 "platform-test-annotations",
Sasha Smundak89414e12019-03-10 19:48:23 -070024 ],
25 java_resource_dirs: ["res"],
26 certificate: "platform",
27 platform_apis: true,
28 test_suites: ["device-tests"],
29}