aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2016-03-16 12:35:33 -0700
committerDan Willemsen <dwillemsen@google.com>2016-03-16 12:35:33 -0700
commitb50381684a619208bc1b0778f69add13c6a0c10a (patch)
tree8501f4bfc67ecfe66f6fd12ab58446a9c35d9e90
parent0f6042e317b1a9ab4bb122167cda5c91cf139026 (diff)
downloadbuild_soong-b50381684a619208bc1b0778f69add13c6a0c10a.tar.gz
build_soong-b50381684a619208bc1b0778f69add13c6a0c10a.tar.bz2
build_soong-b50381684a619208bc1b0778f69add13c6a0c10a.zip
Split Allow_missing_dependencies from Unbundled_build
There are stripped down branches used to build other things than just unbundled apps (like the AOSP llvm branch used to build llvm prebuilts). Change-Id: Id772eac8c4622458591b52f9f27723fdb83f9a85
-rw-r--r--common/config.go2
-rw-r--r--common/variable.go7
2 files changed, 5 insertions, 4 deletions
diff --git a/common/config.go b/common/config.go
index ef59cf72..08129034 100644
--- a/common/config.go
+++ b/common/config.go
@@ -301,7 +301,7 @@ func (c *config) DefaultAppCertificate(ctx PathContext) SourcePath {
}
func (c *config) AllowMissingDependencies() bool {
- return Bool(c.ProductVariables.Unbundled_build)
+ return Bool(c.ProductVariables.Allow_missing_dependencies)
}
func (c *config) SkipDeviceInstall() bool {
diff --git a/common/variable.go b/common/variable.go
index 04856e1a..350bfda5 100644
--- a/common/variable.go
+++ b/common/variable.go
@@ -73,9 +73,10 @@ type productVariables struct {
CrossHostArch *string `json:",omitempty"`
CrossHostSecondaryArch *string `json:",omitempty"`
- Unbundled_build *bool `json:",omitempty"`
- Brillo *bool `json:",omitempty"`
- Malloc_not_svelte *bool `json:",omitempty"`
+ Allow_missing_dependencies *bool `json:",omitempty"`
+ Unbundled_build *bool `json:",omitempty"`
+ Brillo *bool `json:",omitempty"`
+ Malloc_not_svelte *bool `json:",omitempty"`
}
func boolPtr(v bool) *bool {