Merge "update_crate_tests.py: update location of bazel binary" am: af6aef5d2b am: 3c49772588 am: bb3b204928

Original change: https://android-review.googlesource.com/c/platform/development/+/2348423

Change-Id: I52192f87c1d40f82bd6c7d536883baa2955013a6
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot
2022-12-13 18:18:26 +00:00
committed by Automerger Merge Worker

View File

@@ -144,7 +144,7 @@ class Bazel(object):
"""
if platform.system() != 'Linux':
raise UpdaterException('This script has only been tested on Linux.')
self.path = os.path.join(env.ANDROID_BUILD_TOP, "tools", "bazel")
self.path = os.path.join(env.ANDROID_BUILD_TOP, "build", "bazel", "bin", "bazel")
soong_ui = os.path.join(env.ANDROID_BUILD_TOP, "build", "soong", "soong_ui.bash")
# soong_ui requires to be at the root of the repository.