1//###########################################################
2// car-telephony-common just for Robolectric test target.   #
3//###########################################################
4android_app {
5    name: "CarTelephonyCommonForTesting",
6
7    platform_apis: true,
8
9    libs: ["android.car"],
10
11    privileged: true,
12
13    static_libs: ["car-telephony-common"],
14}
15
16//############################################################
17// car-telephony-common Robolectric test target.             #
18//############################################################
19android_robolectric_test {
20    name: "CarTelephonyCommonRoboTests",
21
22    srcs: ["src/**/*.java"],
23
24    java_resource_dirs: ["config"],
25
26    instrumentation_for: "CarTelephonyCommonForTesting",
27}
28