aboutsummaryrefslogtreecommitdiffstats
path: root/cc/cc.go
diff options
context:
space:
mode:
authorMichael Butler <butlermichael@google.com>2019-01-11 20:23:36 +0000
committerMichael Butler <butlermichael@google.com>2019-01-11 20:23:36 +0000
commiteaebd76656c41b43c3b4590c4cf03700df4a3ccd (patch)
tree427c9e4957770c3cc79d3c74d60e2a5001368470 /cc/cc.go
parent769e50b3c9c8f7a3105cd0b06d155884f091cc5e (diff)
downloadbuild_soong-eaebd76656c41b43c3b4590c4cf03700df4a3ccd.tar.gz
build_soong-eaebd76656c41b43c3b4590c4cf03700df4a3ccd.tar.bz2
build_soong-eaebd76656c41b43c3b4590c4cf03700df4a3ccd.zip
Revert "Symbols for libs in APEXes are available"
This reverts commit 769e50b3c9c8f7a3105cd0b06d155884f091cc5e. Reason for revert: Likely causing build failure on aosp_x86_64-eng in aosp_master: "build/make/core/base_rules.mk:271: error: art/build/apex: MODULE.TARGET.SHARED_LIBRARIES.com.android.runtime.host.libart-compiler already defined by art/build/apex." Change-Id: I83b7caa04b2648e4e4914aae2fa5878516634eed
Diffstat (limited to 'cc/cc.go')
-rw-r--r--cc/cc.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/cc/cc.go b/cc/cc.go
index e5d1dd31..85e3a671 100644
--- a/cc/cc.go
+++ b/cc/cc.go
@@ -398,15 +398,6 @@ func (c *Module) OutputFile() android.OptionalPath {
return c.outputFile
}
-func (c *Module) UnstrippedOutputFile() android.Path {
- if library, ok := c.linker.(*libraryDecorator); ok {
- return library.unstrippedOutputFile
- } else if binary, ok := c.linker.(*binaryDecorator); ok {
- return binary.unstrippedOutputFile
- }
- return nil
-}
-
func (c *Module) Init() android.Module {
c.AddProperties(&c.Properties, &c.VendorProperties)
if c.compiler != nil {