Skip to content

Commit

Permalink
Add dexdump to android_sdk_repository.
Browse files Browse the repository at this point in the history
RELNOTES: None.
PiperOrigin-RevId: 554485107
Change-Id: I59b062a6d2ef03e8a2d683edd63155cb154f4a1d
  • Loading branch information
ahumesky authored and Copybara-Service committed Aug 7, 2023
1 parent 982761b commit 773b50f
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions tools/android/android_sdk_repository_template.bzl
Expand Up @@ -83,7 +83,13 @@ def create_android_sdk_rules(
"build-tools/%s/zipalign.exe" % build_tools_directory,
"platform-tools/adb.exe",
] + native.glob(
["build-tools/%s/aapt2.exe" % build_tools_directory],
[
"build-tools/%s/aapt2.exe" % build_tools_directory,
# This should exist, but until cl/553941342 is in the bazel that's
# used to run android_sdk_integration, it won't get put into the
# test sandbox, and hence the test will fail.
"build-tools/%s/dexdump.exe" % build_tools_directory,
],
allow_empty = True,
)

Expand All @@ -93,7 +99,14 @@ def create_android_sdk_rules(
"build-tools/%s/zipalign" % build_tools_directory,
"platform-tools/adb",
] + native.glob(
["extras", "build-tools/%s/aapt2" % build_tools_directory],
[
"extras",
"build-tools/%s/aapt2" % build_tools_directory,
# This should exist, but until cl/553941342 is in the bazel that's
# used to run android_sdk_integration, it won't get put into the
# test sandbox, and hence the test will fail.
"build-tools/%s/dexdump" % build_tools_directory,
],
allow_empty = True,
exclude_directories = 0,
)
Expand Down

0 comments on commit 773b50f

Please sign in to comment.