Merge "Refactor the genrule allowlists code to support internal allowlists"
This commit is contained in:
@@ -14,10 +14,6 @@
|
|||||||
|
|
||||||
package genrule
|
package genrule
|
||||||
|
|
||||||
import (
|
|
||||||
"android/soong/android"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
var (
|
||||||
DepfileAllowList = []string{
|
DepfileAllowList = []string{
|
||||||
"depfile_allowed_for_test",
|
"depfile_allowed_for_test",
|
||||||
@@ -136,12 +132,3 @@ var (
|
|||||||
"external/perfetto",
|
"external/perfetto",
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
var DepfileAllowSet = map[string]bool{}
|
|
||||||
var SandboxingDenyModuleSet = map[string]bool{}
|
|
||||||
var SandboxingDenyPathSet = map[string]bool{}
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
android.AddToStringSet(DepfileAllowSet, DepfileAllowList)
|
|
||||||
android.AddToStringSet(SandboxingDenyModuleSet, append(DepfileAllowList, SandboxingDenyModuleList...))
|
|
||||||
android.AddToStringSet(SandboxingDenyPathSet, SandboxingDenyPathList)
|
|
||||||
}
|
|
||||||
|
@@ -24,6 +24,7 @@ import (
|
|||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
|
|
||||||
"android/soong/bazel/cquery"
|
"android/soong/bazel/cquery"
|
||||||
|
|
||||||
@@ -60,6 +61,12 @@ var PrepareForIntegrationTestWithGenrule = android.GroupFixturePreparers(
|
|||||||
PrepareForTestWithGenRuleBuildComponents,
|
PrepareForTestWithGenRuleBuildComponents,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var DepfileAllowSet map[string]bool
|
||||||
|
var SandboxingDenyModuleSet map[string]bool
|
||||||
|
var SandboxingDenyPathSet map[string]bool
|
||||||
|
var SandboxingDenyModuleSetLock sync.Mutex
|
||||||
|
var DepfileAllowSetLock sync.Mutex
|
||||||
|
|
||||||
func RegisterGenruleBuildComponents(ctx android.RegistrationContext) {
|
func RegisterGenruleBuildComponents(ctx android.RegistrationContext) {
|
||||||
ctx.RegisterModuleType("genrule_defaults", defaultsFactory)
|
ctx.RegisterModuleType("genrule_defaults", defaultsFactory)
|
||||||
|
|
||||||
@@ -595,6 +602,12 @@ func (g *Module) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|||||||
// Allowlist genrule to use depfile until we have a solution to remove it.
|
// Allowlist genrule to use depfile until we have a solution to remove it.
|
||||||
// TODO(b/235582219): Remove allowlist for genrule
|
// TODO(b/235582219): Remove allowlist for genrule
|
||||||
if Bool(g.properties.Depfile) {
|
if Bool(g.properties.Depfile) {
|
||||||
|
if DepfileAllowSet == nil {
|
||||||
|
DepfileAllowSetLock.Lock()
|
||||||
|
defer DepfileAllowSetLock.Unlock()
|
||||||
|
DepfileAllowSet = map[string]bool{}
|
||||||
|
android.AddToStringSet(DepfileAllowSet, DepfileAllowList)
|
||||||
|
}
|
||||||
// TODO(b/283852474): Checking the GenruleSandboxing flag is temporary in
|
// TODO(b/283852474): Checking the GenruleSandboxing flag is temporary in
|
||||||
// order to pass the presubmit before internal master is updated.
|
// order to pass the presubmit before internal master is updated.
|
||||||
if ctx.DeviceConfig().GenruleSandboxing() && !DepfileAllowSet[g.Name()] {
|
if ctx.DeviceConfig().GenruleSandboxing() && !DepfileAllowSet[g.Name()] {
|
||||||
@@ -1024,8 +1037,19 @@ func DefaultsFactory(props ...interface{}) android.Module {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func getSandboxedRuleBuilder(ctx android.ModuleContext, r *android.RuleBuilder) *android.RuleBuilder {
|
func getSandboxedRuleBuilder(ctx android.ModuleContext, r *android.RuleBuilder) *android.RuleBuilder {
|
||||||
if !ctx.DeviceConfig().GenruleSandboxing() || SandboxingDenyPathSet[ctx.ModuleDir()] ||
|
if !ctx.DeviceConfig().GenruleSandboxing() {
|
||||||
SandboxingDenyModuleSet[ctx.ModuleName()] {
|
return r.SandboxTools()
|
||||||
|
}
|
||||||
|
if SandboxingDenyModuleSet == nil {
|
||||||
|
SandboxingDenyModuleSetLock.Lock()
|
||||||
|
defer SandboxingDenyModuleSetLock.Unlock()
|
||||||
|
SandboxingDenyModuleSet = map[string]bool{}
|
||||||
|
SandboxingDenyPathSet = map[string]bool{}
|
||||||
|
android.AddToStringSet(SandboxingDenyModuleSet, append(DepfileAllowList, SandboxingDenyModuleList...))
|
||||||
|
android.AddToStringSet(SandboxingDenyPathSet, SandboxingDenyPathList)
|
||||||
|
}
|
||||||
|
|
||||||
|
if SandboxingDenyPathSet[ctx.ModuleDir()] || SandboxingDenyModuleSet[ctx.ModuleName()] {
|
||||||
return r.SandboxTools()
|
return r.SandboxTools()
|
||||||
}
|
}
|
||||||
return r.SandboxInputs()
|
return r.SandboxInputs()
|
||||||
|
Reference in New Issue
Block a user