5bf2f8049c
This change adds the necessary files for the VCN tests to be run using atest. Bug: 163431877 Test: atest FrameworksVcnTests Change-Id: Ib9a91189bae38170a9fb37d420e262b023534b4b
28 lines
725 B
Plaintext
28 lines
725 B
Plaintext
//########################################################################
|
|
// Build FrameworksVcnTests package
|
|
//########################################################################
|
|
|
|
android_test {
|
|
name: "FrameworksVcnTests",
|
|
srcs: [
|
|
"java/**/*.java",
|
|
"java/**/*.kt",
|
|
],
|
|
platform_apis: true,
|
|
test_suites: ["device-tests"],
|
|
certificate: "platform",
|
|
static_libs: [
|
|
"androidx.test.rules",
|
|
"frameworks-base-testutils",
|
|
"framework-protos",
|
|
"mockito-target-minus-junit4",
|
|
"platform-test-annotations",
|
|
"services.core",
|
|
],
|
|
libs: [
|
|
"android.test.runner",
|
|
"android.test.base",
|
|
"android.test.mock",
|
|
],
|
|
}
|