aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2019-07-18 03:03:59 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2019-07-18 03:03:59 +0000
commita2caa08402966d28a645362e804bc1287354a9f1 (patch)
tree1eab2cbc49b5f8ee5f2084eec150c6b3cb1e241d
parentfee79ecfca22169e325667214d15db0cdd2b83d4 (diff)
parenteeebdfc6132f75e7f2f0a5e354bdf429c61fba7d (diff)
downloadbuild_soong-a2caa08402966d28a645362e804bc1287354a9f1.tar.gz
build_soong-a2caa08402966d28a645362e804bc1287354a9f1.tar.bz2
build_soong-a2caa08402966d28a645362e804bc1287354a9f1.zip
Snap for 5736565 from eeebdfc6132f75e7f2f0a5e354bdf429c61fba7d to qt-c2f2-release
Change-Id: Ia2d8742d53d828d8731b6cf1dbdc6c7cc7533cf4
-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()) ||