diff options
| author | 2025-01-21 15:52:34 -0800 | |
|---|---|---|
| committer | 2025-01-21 15:52:34 -0800 | |
| commit | ad71a38b2967b375426b606ce28b9d8bcc44595a (patch) | |
| tree | bf7b864b960ec1bce122307fee41a393e9392eca | |
| parent | 89370bc7f5c45d963af8ebe5f76768429d75d123 (diff) | |
| parent | 177d498dc4c1fb6d1485b1bbdc77f01ec531d078 (diff) | |
Merge "Remove "no deps" versions of build modes" into main
| -rwxr-xr-x | bin/mm | 2 | ||||
| -rwxr-xr-x | bin/mmm | 2 | ||||
| -rw-r--r-- | cmd/soong_ui/main.go | 14 |
3 files changed, 2 insertions, 16 deletions
@@ -19,6 +19,6 @@ source $(cd $(dirname $BASH_SOURCE) &> /dev/null && pwd)/../../make/shell_utils. require_top -_wrap_build "$TOP/build/soong/soong_ui.bash" --build-mode --modules-in-a-dir-no-deps --dir="$(pwd)" "$@" +_wrap_build "$TOP/build/soong/soong_ui.bash" --build-mode --modules-in-a-dir --dir="$(pwd)" "$@" exit $? @@ -19,6 +19,6 @@ source $(cd $(dirname $BASH_SOURCE) &> /dev/null && pwd)/../../make/shell_utils. require_top -_wrap_build "$TOP/build/soong/soong_ui.bash" --build-mode --modules-in-dirs-no-deps --dir="$(pwd)" "$@" +_wrap_build "$TOP/build/soong/soong_ui.bash" --build-mode --modules-in-dirs --dir="$(pwd)" "$@" exit $? diff --git a/cmd/soong_ui/main.go b/cmd/soong_ui/main.go index 792629218..a88496455 100644 --- a/cmd/soong_ui/main.go +++ b/cmd/soong_ui/main.go @@ -471,20 +471,6 @@ func buildActionConfig(ctx build.Context, args ...string) build.Config { description: "Build action: build from the top of the source tree.", action: build.BUILD_MODULES, }, { - // This is redirecting to mma build command behaviour. Once it has soaked for a - // while, the build command is deleted from here once it has been removed from the - // envsetup.sh. - name: "modules-in-a-dir-no-deps", - description: "Build action: builds all of the modules in the current directory without their dependencies.", - action: build.BUILD_MODULES_IN_A_DIRECTORY, - }, { - // This is redirecting to mmma build command behaviour. Once it has soaked for a - // while, the build command is deleted from here once it has been removed from the - // envsetup.sh. - name: "modules-in-dirs-no-deps", - description: "Build action: builds all of the modules in the supplied directories without their dependencies.", - action: build.BUILD_MODULES_IN_DIRECTORIES, - }, { name: "modules-in-a-dir", description: "Build action: builds all of the modules in the current directory and their dependencies.", action: build.BUILD_MODULES_IN_A_DIRECTORY, |