This is an internal-only genrule, that was previously included in a denylist in vendor/google/build. However, not all partners have that file, so some products ended up setting BUILD_BROKEN_GENRULE_SANDBOXING when that file didn't exist. Moving it to the aosp allowlist lets us remove those build broken flags. I checked with krzysio@ and yromanenko@ and they're ok with putting this name in aosp. Bug: 307824623 Test: Presubmits Change-Id: Ia3f24a5c8c8efc62bdc84435343cafd1dac9afed
36 lines
1003 B
Go
36 lines
1003 B
Go
// Copyright 2023 Google Inc. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package genrule
|
|
|
|
var (
|
|
DepfileAllowList = []string{
|
|
// go/keep-sorted start
|
|
"depfile_allowed_for_test",
|
|
// go/keep-sorted end
|
|
}
|
|
|
|
SandboxingDenyModuleList = []string{
|
|
// go/keep-sorted start
|
|
"aidl_camera_build_version",
|
|
"com.google.pixel.camera.hal.manifest",
|
|
// go/keep-sorted end
|
|
}
|
|
|
|
SandboxingDenyPathList = []string{
|
|
// go/keep-sorted start
|
|
// go/keep-sorted end
|
|
}
|
|
)
|