Files
frameworks_base/services/tests/wmtests/Android.bp
Yuncheol Heo 13a6eb6f7b Create a general mapping between window types and inset types.
Bug: 145242835
Test: atest WmTests:DisplayPolicyLayoutTests
Change-Id: I2f3a34cfb9f1ed9e2e205ea5a0917f75414bfcff
2020-03-16 15:45:26 +00:00

54 lines
1.2 KiB
Plaintext

//########################################################################
// Build WmTests package
//########################################################################
android_test {
name: "WmTests",
// We only want this apk build for tests.
// Include all test java files.
srcs: [
"src/**/*.java",
],
static_libs: [
"frameworks-base-testutils",
"services.core",
"androidx.test.runner",
"androidx.test.rules",
"mockito-target-extended-minus-junit4",
"platform-test-annotations",
"servicestests-utils",
"testng",
"truth-prebuilt",
"testables",
"ub-uiautomator",
"hamcrest-library",
],
libs: [
"android.test.mock",
"android.test.base",
"android.test.runner",
],
// These are not normally accessible from apps so they must be explicitly included.
jni_libs: [
"libdexmakerjvmtiagent",
"libstaticjvmtiagent",
],
platform_apis: true,
test_suites: ["device-tests"],
certificate: "platform",
dxflags: ["--multi-dex"],
optimize: {
enabled: false,
},
}