Files
frameworks_base/packages/ExtServices/tests/Android.bp
Brett Chabot 84151d91f7 Migrate frameworks/base/tests/testables and its users to androidx.test
See go/jetpack-test-android-migration

This is the internal version of AOSP change aosp/908373

Test: m -j TestablesTests NetworkStackTests FrameworksServicesTests SystemUITests FrameworksUiServicesTests ExtServicesUnitTests WmTests FrameworksCoreTests

Exempt-From-Owner-Approval: automated package name refactoring; already reviewed on AOSP
Change-Id: Ib04d80954bd8536914d88c66b28e6632e60a6245
2019-03-01 16:54:09 +00:00

28 lines
569 B
Plaintext

android_test {
name: "ExtServicesUnitTests",
// Include all test java files.
srcs: ["src/**/*.java"],
// We only want this apk build for tests.
certificate: "platform",
libs: [
"android.test.runner",
"android.test.base",
],
static_libs: [
"ExtServices-core",
"androidx.test.rules",
"compatibility-device-util-axt",
"mockito-target-minus-junit4",
"androidx.test.espresso.core",
"truth-prebuilt",
"testables",
"testng",
],
platform_apis: true,
}