summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Cole Faust <colefaust@google.com> 2025-01-21 15:52:34 -0800
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2025-01-21 15:52:34 -0800
commitad71a38b2967b375426b606ce28b9d8bcc44595a (patch)
treebf7b864b960ec1bce122307fee41a393e9392eca
parent89370bc7f5c45d963af8ebe5f76768429d75d123 (diff)
parent177d498dc4c1fb6d1485b1bbdc77f01ec531d078 (diff)
Merge "Remove "no deps" versions of build modes" into main
-rwxr-xr-xbin/mm2
-rwxr-xr-xbin/mmm2
-rw-r--r--cmd/soong_ui/main.go14
3 files changed, 2 insertions, 16 deletions
diff --git a/bin/mm b/bin/mm
index 6461b1e53..6f1c9348d 100755
--- a/bin/mm
+++ b/bin/mm
@@ -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 $?
diff --git a/bin/mmm b/bin/mmm
index ab3a6321c..d9190e575 100755
--- a/bin/mmm
+++ b/bin/mmm
@@ -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,