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