blob: ae60d4e32c0418e8cb188f0792171232b3ec2f77 [file] [log] [blame]
Julia Reynolds38cdbaf2019-01-30 12:16:58 -05001android_test {
2 name: "ExtServicesUnitTests",
3
4 // Include all test java files.
5 srcs: ["src/**/*.java"],
6
7 // We only want this apk build for tests.
8 certificate: "platform",
9
10 libs: [
11 "android.test.runner",
12 "android.test.base",
13 ],
14
15 static_libs: [
16 "ExtServices-core",
Brett Chabot84151d92019-02-27 15:37:59 -080017 "androidx.test.rules",
18 "compatibility-device-util-axt",
Julia Reynolds38cdbaf2019-01-30 12:16:58 -050019 "mockito-target-minus-junit4",
Brett Chabot84151d92019-02-27 15:37:59 -080020 "androidx.test.espresso.core",
Julia Reynolds38cdbaf2019-01-30 12:16:58 -050021 "truth-prebuilt",
22 "testables",
23 "testng",
24 ],
25
26 platform_apis: true,
Brett Chabot84151d92019-02-27 15:37:59 -080027}