diff options
author | Victor Hsieh <victorhsieh@google.com> | 2019-12-11 12:19:57 -0800 |
---|---|---|
committer | Victor Hsieh <victorhsieh@google.com> | 2019-12-11 14:25:32 -0800 |
commit | aa3b5d945f01c6a7281bc08ccb435e536317cbe7 (patch) | |
tree | 935f93ab46a4064bcab4f2be76214b97c80aec10 | |
parent | aa22ba6b5c2a212c307bb4633e8b3c0db22dade1 (diff) |
Add missing test dependencies for ApkVerityTest
By keeping block_device_writer_module in target_required, it avoids
build error of "missing variant: os:linux_glibc, arch:common", while
the test still run on forrest.
Test: forrest
Test: lunch flame-eng; atest ApkVerityTest
Test: lunch aosp_x86_64-eng; m ApkVerityTest
Bug: 112039386
Change-Id: I9cfa0928941b008e23c2a32bb47dae5369bd3201
-rw-r--r-- | tests/ApkVerityTest/Android.bp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ApkVerityTest/Android.bp b/tests/ApkVerityTest/Android.bp index 9bb9983f66a9..c8d1ce1e7837 100644 --- a/tests/ApkVerityTest/Android.bp +++ b/tests/ApkVerityTest/Android.bp @@ -19,14 +19,14 @@ java_test_host { test_suites: ["general-tests"], target_required: [ "block_device_writer_module", - "ApkVerityTestApp", - "ApkVerityTestAppSplit", ], data: [ ":ApkVerityTestCertDer", + ":ApkVerityTestApp", ":ApkVerityTestAppFsvSig", ":ApkVerityTestAppDm", ":ApkVerityTestAppDmFsvSig", + ":ApkVerityTestAppSplit", ":ApkVerityTestAppSplitFsvSig", ":ApkVerityTestAppSplitDm", ":ApkVerityTestAppSplitDmFsvSig", |