diff options
author | 2025-01-21 13:05:05 -0800 | |
---|---|---|
committer | 2025-01-21 15:56:50 -0800 | |
commit | 88f469e9092a2446aae180bfce557a7211cb345b (patch) | |
tree | f96a3c243b8ea852c4e0f874e2a3ba6f729ef356 /android/module.go | |
parent | fe6a78178a2d718352a1160ba67e78b344aa3a82 (diff) |
Remove --skip-make
This should no longer be used.
Bug: 376727180
Test: Presubmits
Change-Id: Ib85902c2c9841e32660bc3879514b12175da438e
Diffstat (limited to 'android/module.go')
-rw-r--r-- | android/module.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/android/module.go b/android/module.go index b9489b482..a58057e43 100644 --- a/android/module.go +++ b/android/module.go @@ -990,8 +990,9 @@ func (m *ModuleBase) baseDepsMutator(ctx BottomUpMutatorContext) { // 2. `boot_signer` is `required` by modules like `build_image` which is explicitly list as // the top-level build goal (in the shell file that invokes Soong). // 3. `boot_signer` depends on `bouncycastle-unbundled` which is in the missing git project. - // 4. aosp_kernel-build-tools invokes soong with `--skip-make`. Therefore, the absence of - // ALLOW_MISSING_DEPENDENCIES didn't cause a problem. + // 4. aosp_kernel-build-tools invokes soong with `--soong-only`. Therefore, the absence of + // ALLOW_MISSING_DEPENDENCIES didn't cause a problem, as previously only make processed required + // dependencies. // 5. Now, since Soong understands `required` deps, it tries to build `boot_signer` and the // absence of external/bouncycastle fails the build. // |