aboutsummaryrefslogtreecommitdiffstats
path: root/cc
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2018-03-10 15:29:03 -0800
committerDan Willemsen <dwillemsen@google.com>2018-04-16 19:27:14 -0700
commit0c1f7bd956d347db4af4f2d84e0f2f6af20d20af (patch)
treeed22129980fb8fd1b8273dc4dc7b4fc2447854aa /cc
parent0f7e692fff56b04fc004306313c1b0725b351412 (diff)
downloadbuild_soong-0c1f7bd956d347db4af4f2d84e0f2f6af20d20af.tar.gz
build_soong-0c1f7bd956d347db4af4f2d84e0f2f6af20d20af.tar.bz2
build_soong-0c1f7bd956d347db4af4f2d84e0f2f6af20d20af.zip
Remove obsolete Brillo variable
Unlike the original change on master, this does not remove product_variables.brillo, as I'm not backporting all of the other removal CLs. Bug: 76168832 Test: none Change-Id: I6a5ce57b317f0cdae1abef15def01e6a31e18d3e Merged-In: I6a5ce57b317f0cdae1abef15def01e6a31e18d3e (cherry picked from commit a052599bb6d00d73efb23a8ef55d145b6cf95a2c)
Diffstat (limited to 'cc')
-rw-r--r--cc/compiler.go4
-rw-r--r--cc/makevars.go3
2 files changed, 0 insertions, 7 deletions
diff --git a/cc/compiler.go b/cc/compiler.go
index 6154758f..1b0eb4e3 100644
--- a/cc/compiler.go
+++ b/cc/compiler.go
@@ -377,10 +377,6 @@ func (compiler *baseCompiler) compilerFlags(ctx ModuleContext, flags Flags, deps
fmt.Sprintf("${config.%sGlobalCflags}", hod))
}
- if Bool(ctx.Config().ProductVariables.Brillo) {
- flags.GlobalFlags = append(flags.GlobalFlags, "-D__BRILLO__")
- }
-
if ctx.Device() {
if Bool(compiler.Properties.Rtti) {
flags.CppFlags = append(flags.CppFlags, "-frtti")
diff --git a/cc/makevars.go b/cc/makevars.go
index 479e0190..b87494e6 100644
--- a/cc/makevars.go
+++ b/cc/makevars.go
@@ -211,9 +211,6 @@ func makeVarsToolchain(ctx android.MakeVarsContext, secondPrefix string,
hod = "Device"
}
- if target.Os.Class == android.Device && Bool(ctx.Config().ProductVariables.Brillo) {
- productExtraCflags += "-D__BRILLO__"
- }
if target.Os.Class == android.Host && Bool(ctx.Config().ProductVariables.HostStaticBinaries) {
productExtraLdflags += "-static"
}