Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 685f419e authored by Jingwen Chen's avatar Jingwen Chen Committed by Automerger Merge Worker
Browse files

Merge "Remove module_name_to_label short circuit from m." am: 4528968f am:...

Merge "Remove module_name_to_label short circuit from m." am: 4528968f am: 6492201d am: 12b73bc1

Original change: https://android-review.googlesource.com/c/platform/build/+/1829694

Change-Id: I7d95340f8ff241db93528bc972540307b86f33fe
parents 4cac3f92 12b73bc1
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -1720,14 +1720,6 @@ function b()

function m()
(
    if [[ "${USE_BAZEL_ANALYSIS}" =~ ^(true|1)$ ]]; then
        # This only short-circuits to Bazel for a single module target now.
        b cquery "@soong_injection//module_name_to_label:$@" 2>/dev/null
        if [[ $? == 0 ]]; then
            bazel build "@soong_injection//module_name_to_label:$@" --config=bp2build
            return $?
        fi
    fi
    _trigger_build "all-modules" "$@"
)