Handle dependencies with export_generated_headers
am: 847dcc7d2a
Change-Id: I968eb6c870b9ed157c4f76bebd59fc7f9245b7c5
This commit is contained in:
@@ -100,6 +100,10 @@ func (library *libraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.An
|
||||
if len(exportedIncludes) > 0 {
|
||||
fmt.Fprintln(w, "LOCAL_EXPORT_C_INCLUDE_DIRS :=", strings.Join(exportedIncludes, " "))
|
||||
}
|
||||
exportedIncludeDeps := library.exportedFlagsDeps()
|
||||
if len(exportedIncludeDeps) > 0 {
|
||||
fmt.Fprintln(w, "LOCAL_EXPORT_C_INCLUDE_DEPS :=", strings.Join(exportedIncludeDeps.Strings(), " "))
|
||||
}
|
||||
|
||||
fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+outputFile.Ext())
|
||||
|
||||
|
6
cc/cc.go
6
cc/cc.go
@@ -80,6 +80,7 @@ type PathDeps struct {
|
||||
GeneratedHeaders android.Paths
|
||||
|
||||
Flags, ReexportedFlags []string
|
||||
ReexportedFlagsDeps android.Paths
|
||||
|
||||
CrtBegin, CrtEnd android.OptionalPath
|
||||
}
|
||||
@@ -760,6 +761,8 @@ func (c *Module) depsToPaths(ctx android.ModuleContext) PathDeps {
|
||||
depPaths.Flags = append(depPaths.Flags, flags)
|
||||
if tag == genHeaderExportDepTag {
|
||||
depPaths.ReexportedFlags = append(depPaths.ReexportedFlags, flags)
|
||||
depPaths.ReexportedFlagsDeps = append(depPaths.ReexportedFlagsDeps,
|
||||
genRule.GeneratedSourceFiles()...)
|
||||
}
|
||||
} else {
|
||||
ctx.ModuleErrorf("module %q is not a genrule", name)
|
||||
@@ -799,10 +802,13 @@ func (c *Module) depsToPaths(ctx android.ModuleContext) PathDeps {
|
||||
if t, ok := tag.(dependencyTag); ok && t.library {
|
||||
if i, ok := cc.linker.(exportedFlagsProducer); ok {
|
||||
flags := i.exportedFlags()
|
||||
deps := i.exportedFlagsDeps()
|
||||
depPaths.Flags = append(depPaths.Flags, flags...)
|
||||
depPaths.GeneratedHeaders = append(depPaths.GeneratedHeaders, deps...)
|
||||
|
||||
if t.reexportFlags {
|
||||
depPaths.ReexportedFlags = append(depPaths.ReexportedFlags, flags...)
|
||||
depPaths.ReexportedFlagsDeps = append(depPaths.ReexportedFlagsDeps, deps...)
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -117,7 +117,8 @@ func libraryHostSharedFactory() (blueprint.Module, []interface{}) {
|
||||
type flagExporter struct {
|
||||
Properties FlagExporterProperties
|
||||
|
||||
flags []string
|
||||
flags []string
|
||||
flagsDeps android.Paths
|
||||
}
|
||||
|
||||
func (f *flagExporter) exportIncludes(ctx ModuleContext, inc string) {
|
||||
@@ -131,12 +132,21 @@ func (f *flagExporter) reexportFlags(flags []string) {
|
||||
f.flags = append(f.flags, flags...)
|
||||
}
|
||||
|
||||
func (f *flagExporter) reexportDeps(deps android.Paths) {
|
||||
f.flagsDeps = append(f.flagsDeps, deps...)
|
||||
}
|
||||
|
||||
func (f *flagExporter) exportedFlags() []string {
|
||||
return f.flags
|
||||
}
|
||||
|
||||
func (f *flagExporter) exportedFlagsDeps() android.Paths {
|
||||
return f.flagsDeps
|
||||
}
|
||||
|
||||
type exportedFlagsProducer interface {
|
||||
exportedFlags() []string
|
||||
exportedFlagsDeps() android.Paths
|
||||
}
|
||||
|
||||
var _ exportedFlagsProducer = (*flagExporter)(nil)
|
||||
@@ -445,6 +455,7 @@ func (library *libraryDecorator) link(ctx ModuleContext,
|
||||
|
||||
library.exportIncludes(ctx, "-I")
|
||||
library.reexportFlags(deps.ReexportedFlags)
|
||||
library.reexportDeps(deps.ReexportedFlagsDeps)
|
||||
|
||||
return out
|
||||
}
|
||||
|
Reference in New Issue
Block a user