1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| android_test {
| name: "ExtServicesUnitTests",
|
| // Include all test java files.
| srcs: ["src/**/*.java"],
|
| // We only want this apk build for tests.
| certificate: "platform",
|
| libs: [
| "android.test.runner",
| "android.test.base",
| ],
|
| static_libs: [
| "ExtServices-core",
| "androidx.test.rules",
| "compatibility-device-util-axt",
| "mockito-target-minus-junit4",
| "androidx.test.espresso.core",
| "truth-prebuilt",
| "testables",
| "testng",
| ],
|
| platform_apis: true,
| }
|
|