Add a gtest that runs as root to test receving UidImportance updates. bug: 172942349 bug: 159172726 Change-Id: I2c6ee84f09afd1638c53e502e288f23bd8717a9b
40 lines
602 B
Plaintext
40 lines
602 B
Plaintext
cc_test {
|
|
name: "ActivityManagerNativeTestCases",
|
|
|
|
multilib: {
|
|
lib32: {
|
|
suffix: "32",
|
|
},
|
|
lib64: {
|
|
suffix: "64",
|
|
},
|
|
},
|
|
|
|
srcs: ["src/ActivityManagerNativeTest.cpp"],
|
|
|
|
shared_libs: [
|
|
"liblog",
|
|
"libutils",
|
|
"libandroid",
|
|
"libbinder",
|
|
],
|
|
|
|
static_libs: [
|
|
"libbase",
|
|
"libgtest",
|
|
],
|
|
stl: "c++_shared",
|
|
|
|
test_suites: [
|
|
"general-tests",
|
|
],
|
|
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wall",
|
|
],
|
|
required: [
|
|
"UidImportanceHelperApp",
|
|
],
|
|
}
|