aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiyong Park <jiyong@google.com>2019-07-16 19:32:32 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-07-16 19:32:32 -0700
commiteeebdfc6132f75e7f2f0a5e354bdf429c61fba7d (patch)
tree1eab2cbc49b5f8ee5f2084eec150c6b3cb1e241d
parenta0b5690cb885cb87d571dc13864712a027f6b4c2 (diff)
parent895e224d8fad6877918ef05545d7423a30d72c2b (diff)
downloadbuild_soong-eeebdfc6132f75e7f2f0a5e354bdf429c61fba7d.tar.gz
build_soong-eeebdfc6132f75e7f2f0a5e354bdf429c61fba7d.tar.bz2
build_soong-eeebdfc6132f75e7f2f0a5e354bdf429c61fba7d.zip
fix: APEX prebuilts are disabled in platform build
am: 895e224d8f Change-Id: Iea80d77c2c64bc4dd8ac008e7f0927b65139bb16
-rw-r--r--apex/apex.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/apex.go b/apex/apex.go
index 9159cd18..c6a1f464 100644
--- a/apex/apex.go
+++ b/apex/apex.go
@@ -1344,7 +1344,7 @@ func (p *Prebuilt) DepsMutator(ctx android.BottomUpMutatorContext) {
// Force disable the prebuilts when we are doing unbundled build. We do unbundled build
// to build the prebuilts themselves.
- forceDisable = forceDisable || !ctx.Config().UnbundledBuild()
+ forceDisable = forceDisable || ctx.Config().UnbundledBuild()
// b/137216042 don't use prebuilts when address sanitizer is on
forceDisable = forceDisable || android.InList("address", ctx.Config().SanitizeDevice()) ||