Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configure @androidsdk//:emulator_x86 and :emulator_arm to point to the unified emulator binary #8282

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,19 @@ alias(
actual = "emulator/emulator",
)

# TODO(b/132352722)
#
# emulator v29+ removed the arm and x86 specific binaries.
# Keeping these aliases around for backwards compatibility with
# older unified launcher releases.
alias(
name = "emulator_arm",
actual = "emulator/emulator64-arm",
actual = "emulator/emulator",
)

alias(
name = "emulator_x86",
actual = "emulator/emulator64-x86",
actual = "emulator/emulator",
)

filegroup(
Expand Down