You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
973 B
44 lines
973 B
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
android_test {
|
|
name: "BluetoothInstrumentationTests",
|
|
|
|
// We only want this apk build for tests.
|
|
certificate: "platform",
|
|
|
|
libs: [
|
|
"javax.obex",
|
|
"android.test.runner",
|
|
"telephony-common",
|
|
"libprotobuf-java-micro",
|
|
"android.test.base",
|
|
"android.test.mock",
|
|
],
|
|
|
|
static_libs: [
|
|
"androidx.test.ext.truth",
|
|
"androidx.test.rules",
|
|
"mockito-target",
|
|
"androidx.test.espresso.intents",
|
|
"gson-prebuilt-jar",
|
|
"androidx.room_room-migration",
|
|
"androidx.room_room-runtime",
|
|
"androidx.room_room-testing",
|
|
"truth-prebuilt",
|
|
],
|
|
|
|
asset_dirs: ["src/com/android/bluetooth/btservice/storage/schemas"],
|
|
|
|
// Include all test java files.
|
|
srcs: ["src/**/*.java"],
|
|
|
|
platform_apis: true,
|
|
|
|
test_suites: ["device-tests"],
|
|
|
|
instrumentation_for: "Bluetooth",
|
|
|
|
}
|