diff options
author | 2024-01-18 06:08:18 +0000 | |
---|---|---|
committer | 2024-01-23 03:40:13 +0000 | |
commit | 36e0d0b0645c966398bac5e46305e5cb111b9dd4 (patch) | |
tree | 466b7d4fba3a01381b9b135dd7c96edee34f1ea2 /dexdump/Android.bp | |
parent | 99f100ae144e8f62f3935b02f219025892f5f069 (diff) |
Make the dexdump available for use by the /vendor tests
The transition from Make to Soong is in progress for `gts-test`, and `dexdump` is a necessary tool for `GtsNetUnofficialApisUsageTestCases`.
Bug: 312320908
Test: Add dexdump to the Android.bp
Change-Id: I435dc65df1f65fae6d45bef3a0da9eceb38ac839
Diffstat (limited to 'dexdump/Android.bp')
-rw-r--r-- | dexdump/Android.bp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dexdump/Android.bp b/dexdump/Android.bp index da43fbe4f1..bf345a3b39 100644 --- a/dexdump/Android.bp +++ b/dexdump/Android.bp @@ -34,7 +34,10 @@ cc_defaults { art_cc_binary { name: "dexdump", defaults: ["dexdump_defaults"], - visibility: ["//development/build"], + visibility: [ + "//development/build", + "//vendor:__subpackages__", + ], host_supported: true, target: { android: { |