Merge "Symbols for libs in APEXes are available" am: 07feb07a16
am: 3007628413
Change-Id: I3170fcf6ba7f1a4ff46f2dd04d8f152e35ad122c
This commit is contained in:
9
cc/cc.go
9
cc/cc.go
@@ -398,6 +398,15 @@ 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 {
|
||||
|
Reference in New Issue
Block a user