• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1android_test {
2    name: "BluetoothInstrumentationTests",
3
4    // We only want this apk build for tests.
5    certificate: "platform",
6
7    libs: [
8        "javax.obex",
9        "android.test.runner",
10        "telephony-common",
11        "libprotobuf-java-micro",
12        "android.test.base",
13        "android.test.mock",
14    ],
15
16    static_libs: [
17        "androidx.test.rules",
18        "mockito-target",
19        "androidx.test.espresso.intents",
20        "gson-prebuilt-jar",
21        "androidx.room_room-migration",
22        "androidx.room_room-runtime",
23        "androidx.room_room-testing",
24    ],
25
26    asset_dirs: ["src/com/android/bluetooth/btservice/storage/schemas"],
27
28    // Include all test java files.
29    srcs: ["src/**/*.java"],
30
31    platform_apis: true,
32
33    test_suites: ["device-tests"],
34
35    instrumentation_for: "Bluetooth",
36
37}
38