Merge "Allowlist transitive deps of libnetworkstats" into main

This commit is contained in:
Treehugger Robot
2023-10-19 07:20:12 +00:00
committed by Gerrit Code Review

View File

@@ -203,6 +203,7 @@ var (
"external/ow2-asm": Bp2BuildDefaultTrueRecursively, "external/ow2-asm": Bp2BuildDefaultTrueRecursively,
"external/pcre": Bp2BuildDefaultTrueRecursively, "external/pcre": Bp2BuildDefaultTrueRecursively,
"external/perfmark/api": Bp2BuildDefaultTrueRecursively, "external/perfmark/api": Bp2BuildDefaultTrueRecursively,
"external/perfetto": Bp2BuildDefaultTrue,
"external/protobuf": Bp2BuildDefaultTrueRecursively, "external/protobuf": Bp2BuildDefaultTrueRecursively,
"external/python/jinja/src": Bp2BuildDefaultTrueRecursively, "external/python/jinja/src": Bp2BuildDefaultTrueRecursively,
"external/python/markupsafe/src": Bp2BuildDefaultTrueRecursively, "external/python/markupsafe/src": Bp2BuildDefaultTrueRecursively,
@@ -448,6 +449,7 @@ var (
"system/media/camera": Bp2BuildDefaultTrueRecursively, "system/media/camera": Bp2BuildDefaultTrueRecursively,
"system/memory/libion": Bp2BuildDefaultTrueRecursively, "system/memory/libion": Bp2BuildDefaultTrueRecursively,
"system/memory/libmemunreachable": Bp2BuildDefaultTrueRecursively, "system/memory/libmemunreachable": Bp2BuildDefaultTrueRecursively,
"system/netd": Bp2BuildDefaultTrue,
"system/security/fsverity": Bp2BuildDefaultTrueRecursively, "system/security/fsverity": Bp2BuildDefaultTrueRecursively,
"system/sepolicy/apex": Bp2BuildDefaultTrueRecursively, "system/sepolicy/apex": Bp2BuildDefaultTrueRecursively,
"system/testing/gtest_extras": Bp2BuildDefaultTrueRecursively, "system/testing/gtest_extras": Bp2BuildDefaultTrueRecursively,
@@ -957,7 +959,6 @@ var (
"lab-resource-grpc", "lab-resource-grpc",
"blueprint-deptools", "blueprint-deptools",
"protoc-gen-grpc-java-plugin", "protoc-gen-grpc-java-plugin",
"perfetto_trace-full",
"tf-remote-client", "tf-remote-client",
"tradefed-lite", "tradefed-lite",
"tradefed-isolation-protos", "tradefed-isolation-protos",
@@ -979,7 +980,6 @@ var (
"test-composers", "test-composers",
"py3-stdlib-prebuilt-srcs", "py3-stdlib-prebuilt-srcs",
"platformprotos", "platformprotos",
"perfetto_metrics-full",
"test-services-normalized.apk", "test-services-normalized.apk",
"tradefed-common-util", "tradefed-common-util",
"tradefed-clearcut-client", "tradefed-clearcut-client",
@@ -1033,6 +1033,7 @@ var (
// the "prebuilt_" prefix to the name, so that it's differentiable from // the "prebuilt_" prefix to the name, so that it's differentiable from
// the source versions within Soong's module graph. // the source versions within Soong's module graph.
Bp2buildModuleDoNotConvertList = []string{ Bp2buildModuleDoNotConvertList = []string{
// rust modules that have cc deps // rust modules that have cc deps
"liblogger", "liblogger",
"libbssl_ffi", "libbssl_ffi",
@@ -1609,6 +1610,16 @@ var (
// TODO: b/305223367 - Missing dep on android.test.base-neverlink // TODO: b/305223367 - Missing dep on android.test.base-neverlink
"ObjenesisTck", "ObjenesisTck",
// TODO - b/306197073: Sets different STL for host and device variants
"trace_processor_shell",
// TODO - b/303713102: duplicate deps added by cc_lite_proto_library
"perfetto_unittests",
"perfetto_integrationtests",
// TODO - b/306194966: Depends on an empty filegroup
"libperfetto_c",
} }
// Bazel prod-mode allowlist. Modules in this list are built by Bazel // Bazel prod-mode allowlist. Modules in this list are built by Bazel