aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlya Trafimovich <skvadrik@google.com>2020-09-01 12:05:13 +0100
committerUlya Trafimovich <skvadrik@google.com>2020-10-27 17:05:32 +0000
commitbc86d7361f64780509598c01b1c5ad7e44f8822b (patch)
tree7a80df06c9306b76e7d9a10d07c0189a5ebd0d92
parent7e9e708a23a253badd9eca728e2e4bfe9e6d33d1 (diff)
downloadBrowser2-bc86d7361f64780509598c01b1c5ad7e44f8822b.tar.gz
Add <uses-library> information.
The required <uses-library> "android.test.runner" is in the manifest for Browser2, and it must be explicitly added to `uses_libs` because it is not among the app dependencies and Soong cannot add it automatically. Bug: 132357300 Test: lunch cf_x86_phone-userdebug && m Change-Id: I0cd3307068c03cf7645db434c8dbbf7972a9dd50
-rw-r--r--Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index e04b939..8eaa545 100644
--- a/Android.bp
+++ b/Android.bp
@@ -2,5 +2,6 @@ android_app {
name: "Browser2",
sdk_version: "current",
srcs: ["src/**/*.java"],
+ uses_libs: ["android.test.runner"],
product_specific: true,
}