Skip to content

Commit

Permalink
Export more files in androidsdk
Browse files Browse the repository at this point in the history
This allows Android rule writers to access more file targets in `@androidsdk` directly.

Closes bazelbuild#7823.

Change-Id: I535b03f62709763cc35f3936e07562e195a9979b
PiperOrigin-RevId: 250707568
  • Loading branch information
jin authored and irengrig committed Jul 15, 2019
1 parent 93c62ec commit ecdf338
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ filegroup(

filegroup(
name = "qemu2_x86",
srcs = ["emulator/emulator"] + select({
srcs = ["emulator/emulator"] + glob(["emulator/lib64/**", "emulator/lib/**"]) + select({
"@bazel_tools//src/conditions:darwin": ["emulator/qemu/darwin-x86_64/qemu-system-i386"],
"@bazel_tools//src/conditions:darwin_x86_64": ["emulator/qemu/darwin-x86_64/qemu-system-i386"],
"//conditions:default": ["emulator/qemu/linux-x86_64/qemu-system-i386"],
Expand All @@ -70,4 +70,4 @@ create_system_images_filegroups(
)

exports_files([
%exported_files%] + glob(["system-images/**"]))
%exported_files%] + glob(["system-images/**", "tools/**", "emulator/**"]))

0 comments on commit ecdf338

Please sign in to comment.