Drop IncludeTags
This was previously used in conjunction with blueprint_package_includes to prune Android.bp files from soong analysis. Test: m nothing Bug: 308188212 Change-Id: Ie82e20eec63bd0be70e1cf0290c70f62d5621c76
This commit is contained in:
parent
b07e7fd542
commit
aa9369b71d
7 changed files with 0 additions and 17 deletions
|
@ -1329,10 +1329,6 @@ func (c *config) SourceRootDirs() []string {
|
|||
return c.productVariables.SourceRootDirs
|
||||
}
|
||||
|
||||
func (c *config) IncludeTags() []string {
|
||||
return c.productVariables.IncludeTags
|
||||
}
|
||||
|
||||
func (c *config) HostStaticBinaries() bool {
|
||||
return Bool(c.productVariables.HostStaticBinaries)
|
||||
}
|
||||
|
|
|
@ -156,7 +156,6 @@ type Context struct {
|
|||
func NewContext(config Config) *Context {
|
||||
ctx := &Context{blueprint.NewContext(), config}
|
||||
ctx.SetSrcDir(absSrcDir)
|
||||
ctx.AddIncludeTags(config.IncludeTags()...)
|
||||
ctx.AddSourceRootDirs(config.SourceRootDirs()...)
|
||||
return ctx
|
||||
}
|
||||
|
|
|
@ -471,7 +471,6 @@ type ProductVariables struct {
|
|||
|
||||
IgnorePrefer32OnDevice bool `json:",omitempty"`
|
||||
|
||||
IncludeTags []string `json:",omitempty"`
|
||||
SourceRootDirs []string `json:",omitempty"`
|
||||
|
||||
AfdoProfiles []string `json:",omitempty"`
|
||||
|
|
|
@ -98,7 +98,6 @@ func newContext(configuration android.Config) *android.Context {
|
|||
ctx := android.NewContext(configuration)
|
||||
ctx.SetNameInterface(newNameResolver(configuration))
|
||||
ctx.SetAllowMissingDependencies(configuration.AllowMissingDependencies())
|
||||
ctx.AddIncludeTags(configuration.IncludeTags()...)
|
||||
ctx.AddSourceRootDirs(configuration.SourceRootDirs()...)
|
||||
return ctx
|
||||
}
|
||||
|
|
|
@ -1164,14 +1164,6 @@ func (c *configImpl) SetSourceRootDirs(i []string) {
|
|||
c.sourceRootDirs = i
|
||||
}
|
||||
|
||||
func (c *configImpl) GetIncludeTags() []string {
|
||||
return c.includeTags
|
||||
}
|
||||
|
||||
func (c *configImpl) SetIncludeTags(i []string) {
|
||||
c.includeTags = i
|
||||
}
|
||||
|
||||
func (c *configImpl) GetLogsPrefix() string {
|
||||
return c.logsPrefix
|
||||
}
|
||||
|
|
|
@ -301,6 +301,5 @@ func runMakeProductConfig(ctx Context, config Config) {
|
|||
config.SetBuildBrokenDupRules(makeVars["BUILD_BROKEN_DUP_RULES"] == "true")
|
||||
config.SetBuildBrokenUsesNetwork(makeVars["BUILD_BROKEN_USES_NETWORK"] == "true")
|
||||
config.SetBuildBrokenNinjaUsesEnvVars(strings.Fields(makeVars["BUILD_BROKEN_NINJA_USES_ENV_VARS"]))
|
||||
config.SetIncludeTags(strings.Fields(makeVars["PRODUCT_INCLUDE_TAGS"]))
|
||||
config.SetSourceRootDirs(strings.Fields(makeVars["PRODUCT_SOURCE_ROOT_DIRS"]))
|
||||
}
|
||||
|
|
|
@ -401,7 +401,6 @@ func bootstrapBlueprint(ctx Context, config Config) {
|
|||
}
|
||||
|
||||
blueprintCtx := blueprint.NewContext()
|
||||
blueprintCtx.AddIncludeTags(config.GetIncludeTags()...)
|
||||
blueprintCtx.AddSourceRootDirs(config.GetSourceRootDirs()...)
|
||||
blueprintCtx.SetIgnoreUnknownModuleTypes(true)
|
||||
blueprintConfig := BlueprintConfig{
|
||||
|
|
Loading…
Reference in a new issue