Merge changes If92be663,I377f3409,I7bb22856,I98d484b3,I945f2c7c, ...

* changes:
  gn2bp: Remove unused builtin_deps
  gn2bp: Allow pclmul and ssse3 cflag
  gn2bp: Use list for cflag_allowlist
  gn2bp: Fix to bubble up proto static_lib deps
  gn2bp: Use chromium protoc to generate .c/.h files
  gn2bp: create modules for protoc
  gn2bp: Remove third_party protobuf from local_include_dirs_denylist
  gn2bp: Remove third_party protobuf from builtin_deps
This commit is contained in:
Mohannad Farrag
2022-11-16 13:34:49 +00:00
committed by Gerrit Code Review
3 changed files with 461 additions and 137 deletions

View File

@@ -2072,6 +2072,9 @@ cc_library_shared {
"cronet_aml_third_party_icu_icuuc_private", "cronet_aml_third_party_icu_icuuc_private",
"cronet_aml_third_party_libevent_libevent", "cronet_aml_third_party_libevent_libevent",
"cronet_aml_third_party_modp_b64_modp_b64", "cronet_aml_third_party_modp_b64_modp_b64",
"cronet_aml_third_party_protobuf_protobuf_full",
"cronet_aml_third_party_protobuf_protobuf_lite",
"cronet_aml_third_party_protobuf_protoc_lib",
"cronet_aml_third_party_zlib_zlib", "cronet_aml_third_party_zlib_zlib",
"cronet_aml_url_url", "cronet_aml_url_url",
], ],
@@ -2133,6 +2136,7 @@ cc_library_shared {
"net/third_party/quiche/src/quiche/common/platform/default/", "net/third_party/quiche/src/quiche/common/platform/default/",
"third_party/abseil-cpp/", "third_party/abseil-cpp/",
"third_party/boringssl/src/include/", "third_party/boringssl/src/include/",
"third_party/protobuf/src/",
"third_party/zlib/", "third_party/zlib/",
"third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include", "third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include",
], ],
@@ -2922,9 +2926,9 @@ genrule {
"net/base/isolation_info.proto", "net/base/isolation_info.proto",
], ],
tools: [ tools: [
"aprotoc", "cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_",
], ],
cmd: "$(location aprotoc) --proto_path=external/chromium_org/net/base --cpp_out=lite=true:$(genDir)/external/chromium_org/net/base/ $(in)", cmd: "$(location cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_) --proto_path=external/chromium_org/net/base --cpp_out=lite=true:$(genDir)/external/chromium_org/net/base/ $(in)",
out: [ out: [
"external/chromium_org/net/base/isolation_info.pb.cc", "external/chromium_org/net/base/isolation_info.pb.cc",
], ],
@@ -2937,9 +2941,9 @@ genrule {
"net/base/isolation_info.proto", "net/base/isolation_info.proto",
], ],
tools: [ tools: [
"aprotoc", "cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_",
], ],
cmd: "$(location aprotoc) --proto_path=external/chromium_org/net/base --cpp_out=lite=true:$(genDir)/external/chromium_org/net/base/ $(in)", cmd: "$(location cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_) --proto_path=external/chromium_org/net/base --cpp_out=lite=true:$(genDir)/external/chromium_org/net/base/ $(in)",
out: [ out: [
"external/chromium_org/net/base/isolation_info.pb.h", "external/chromium_org/net/base/isolation_info.pb.h",
], ],
@@ -3478,9 +3482,11 @@ cc_library_static {
"cronet_aml_third_party_icu_icuuc_private", "cronet_aml_third_party_icu_icuuc_private",
"cronet_aml_third_party_libevent_libevent", "cronet_aml_third_party_libevent_libevent",
"cronet_aml_third_party_modp_b64_modp_b64", "cronet_aml_third_party_modp_b64_modp_b64",
"cronet_aml_third_party_protobuf_protobuf_full",
"cronet_aml_third_party_protobuf_protobuf_lite",
"cronet_aml_third_party_protobuf_protoc_lib",
"cronet_aml_third_party_zlib_zlib", "cronet_aml_third_party_zlib_zlib",
"cronet_aml_url_url", "cronet_aml_url_url",
"libprotobuf-cpp-lite",
], ],
generated_headers: [ generated_headers: [
"cronet_aml_base_debugging_buildflags", "cronet_aml_base_debugging_buildflags",
@@ -3551,6 +3557,7 @@ cc_library_static {
"third_party/abseil-cpp/", "third_party/abseil-cpp/",
"third_party/boringssl/src/include/", "third_party/boringssl/src/include/",
"third_party/brotli/include/", "third_party/brotli/include/",
"third_party/protobuf/src/",
"third_party/zlib/", "third_party/zlib/",
"third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include", "third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include",
], ],
@@ -3681,9 +3688,9 @@ genrule {
"net/nqe/proto/network_id_proto.proto", "net/nqe/proto/network_id_proto.proto",
], ],
tools: [ tools: [
"aprotoc", "cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_",
], ],
cmd: "$(location aprotoc) --proto_path=external/chromium_org/net/nqe/proto --cpp_out=lite=true:$(genDir)/external/chromium_org/net/nqe/proto/ $(in)", cmd: "$(location cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_) --proto_path=external/chromium_org/net/nqe/proto --cpp_out=lite=true:$(genDir)/external/chromium_org/net/nqe/proto/ $(in)",
out: [ out: [
"external/chromium_org/net/nqe/proto/network_id_proto.pb.cc", "external/chromium_org/net/nqe/proto/network_id_proto.pb.cc",
], ],
@@ -3696,9 +3703,9 @@ genrule {
"net/nqe/proto/network_id_proto.proto", "net/nqe/proto/network_id_proto.proto",
], ],
tools: [ tools: [
"aprotoc", "cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_",
], ],
cmd: "$(location aprotoc) --proto_path=external/chromium_org/net/nqe/proto --cpp_out=lite=true:$(genDir)/external/chromium_org/net/nqe/proto/ $(in)", cmd: "$(location cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_) --proto_path=external/chromium_org/net/nqe/proto --cpp_out=lite=true:$(genDir)/external/chromium_org/net/nqe/proto/ $(in)",
out: [ out: [
"external/chromium_org/net/nqe/proto/network_id_proto.pb.h", "external/chromium_org/net/nqe/proto/network_id_proto.pb.h",
], ],
@@ -3777,9 +3784,9 @@ genrule {
"net/third_party/quiche/src/quiche/quic/core/proto/source_address_token.proto", "net/third_party/quiche/src/quiche/quic/core/proto/source_address_token.proto",
], ],
tools: [ tools: [
"aprotoc", "cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_",
], ],
cmd: "$(location aprotoc) --proto_path=external/chromium_org/net/third_party/quiche/src --cpp_out=lite=true:$(genDir)/external/chromium_org/net/third_party/quiche/src/ $(in)", cmd: "$(location cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_) --proto_path=external/chromium_org/net/third_party/quiche/src --cpp_out=lite=true:$(genDir)/external/chromium_org/net/third_party/quiche/src/ $(in)",
out: [ out: [
"external/chromium_org/net/third_party/quiche/src/quiche/quic/core/proto/cached_network_parameters.pb.cc", "external/chromium_org/net/third_party/quiche/src/quiche/quic/core/proto/cached_network_parameters.pb.cc",
"external/chromium_org/net/third_party/quiche/src/quiche/quic/core/proto/crypto_server_config.pb.cc", "external/chromium_org/net/third_party/quiche/src/quiche/quic/core/proto/crypto_server_config.pb.cc",
@@ -3796,9 +3803,9 @@ genrule {
"net/third_party/quiche/src/quiche/quic/core/proto/source_address_token.proto", "net/third_party/quiche/src/quiche/quic/core/proto/source_address_token.proto",
], ],
tools: [ tools: [
"aprotoc", "cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_",
], ],
cmd: "$(location aprotoc) --proto_path=external/chromium_org/net/third_party/quiche/src --cpp_out=lite=true:$(genDir)/external/chromium_org/net/third_party/quiche/src/ $(in)", cmd: "$(location cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_) --proto_path=external/chromium_org/net/third_party/quiche/src --cpp_out=lite=true:$(genDir)/external/chromium_org/net/third_party/quiche/src/ $(in)",
out: [ out: [
"external/chromium_org/net/third_party/quiche/src/quiche/quic/core/proto/cached_network_parameters.pb.h", "external/chromium_org/net/third_party/quiche/src/quiche/quic/core/proto/cached_network_parameters.pb.h",
"external/chromium_org/net/third_party/quiche/src/quiche/quic/core/proto/crypto_server_config.pb.h", "external/chromium_org/net/third_party/quiche/src/quiche/quic/core/proto/crypto_server_config.pb.h",
@@ -3818,9 +3825,9 @@ genrule {
"net/third_party/quiche/src/quiche/quic/test_tools/send_algorithm_test_result.proto", "net/third_party/quiche/src/quiche/quic/test_tools/send_algorithm_test_result.proto",
], ],
tools: [ tools: [
"aprotoc", "cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_",
], ],
cmd: "$(location aprotoc) --proto_path=external/chromium_org/net/third_party/quiche/src/quiche/quic/test_tools --cpp_out=lite=true:$(genDir)/external/chromium_org/net/third_party/quiche/src/quiche/quic/test_tools/ $(in)", cmd: "$(location cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_) --proto_path=external/chromium_org/net/third_party/quiche/src/quiche/quic/test_tools --cpp_out=lite=true:$(genDir)/external/chromium_org/net/third_party/quiche/src/quiche/quic/test_tools/ $(in)",
out: [ out: [
"external/chromium_org/net/third_party/quiche/src/quiche/quic/test_tools/send_algorithm_test_result.pb.cc", "external/chromium_org/net/third_party/quiche/src/quiche/quic/test_tools/send_algorithm_test_result.pb.cc",
], ],
@@ -3833,9 +3840,9 @@ genrule {
"net/third_party/quiche/src/quiche/quic/test_tools/send_algorithm_test_result.proto", "net/third_party/quiche/src/quiche/quic/test_tools/send_algorithm_test_result.proto",
], ],
tools: [ tools: [
"aprotoc", "cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_",
], ],
cmd: "$(location aprotoc) --proto_path=external/chromium_org/net/third_party/quiche/src/quiche/quic/test_tools --cpp_out=lite=true:$(genDir)/external/chromium_org/net/third_party/quiche/src/quiche/quic/test_tools/ $(in)", cmd: "$(location cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_) --proto_path=external/chromium_org/net/third_party/quiche/src/quiche/quic/test_tools --cpp_out=lite=true:$(genDir)/external/chromium_org/net/third_party/quiche/src/quiche/quic/test_tools/ $(in)",
out: [ out: [
"external/chromium_org/net/third_party/quiche/src/quiche/quic/test_tools/send_algorithm_test_result.pb.h", "external/chromium_org/net/third_party/quiche/src/quiche/quic/test_tools/send_algorithm_test_result.pb.h",
], ],
@@ -4259,9 +4266,11 @@ cc_library_static {
"cronet_aml_third_party_icu_icuuc_private", "cronet_aml_third_party_icu_icuuc_private",
"cronet_aml_third_party_libevent_libevent", "cronet_aml_third_party_libevent_libevent",
"cronet_aml_third_party_modp_b64_modp_b64", "cronet_aml_third_party_modp_b64_modp_b64",
"cronet_aml_third_party_protobuf_protobuf_full",
"cronet_aml_third_party_protobuf_protobuf_lite",
"cronet_aml_third_party_protobuf_protoc_lib",
"cronet_aml_third_party_zlib_zlib", "cronet_aml_third_party_zlib_zlib",
"cronet_aml_url_url", "cronet_aml_url_url",
"libprotobuf-cpp-lite",
], ],
generated_headers: [ generated_headers: [
"cronet_aml_build_chromeos_buildflags", "cronet_aml_build_chromeos_buildflags",
@@ -4307,6 +4316,7 @@ cc_library_static {
"net/third_party/quiche/src/quiche/common/platform/default/", "net/third_party/quiche/src/quiche/common/platform/default/",
"third_party/abseil-cpp/", "third_party/abseil-cpp/",
"third_party/boringssl/src/include/", "third_party/boringssl/src/include/",
"third_party/protobuf/src/",
"third_party/zlib/", "third_party/zlib/",
"third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include", "third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include",
], ],
@@ -6548,9 +6558,9 @@ genrule {
"third_party/metrics_proto/user_demographics.proto", "third_party/metrics_proto/user_demographics.proto",
], ],
tools: [ tools: [
"aprotoc", "cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_",
], ],
cmd: "$(location aprotoc) --proto_path=external/chromium_org/third_party/metrics_proto --cpp_out=lite=true:$(genDir)/external/chromium_org/third_party/metrics_proto/ $(in)", cmd: "$(location cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_) --proto_path=external/chromium_org/third_party/metrics_proto --cpp_out=lite=true:$(genDir)/external/chromium_org/third_party/metrics_proto/ $(in)",
out: [ out: [
"external/chromium_org/third_party/metrics_proto/call_stack_profile.pb.cc", "external/chromium_org/third_party/metrics_proto/call_stack_profile.pb.cc",
"external/chromium_org/third_party/metrics_proto/cast_logs.pb.cc", "external/chromium_org/third_party/metrics_proto/cast_logs.pb.cc",
@@ -6615,9 +6625,9 @@ genrule {
"third_party/metrics_proto/user_demographics.proto", "third_party/metrics_proto/user_demographics.proto",
], ],
tools: [ tools: [
"aprotoc", "cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_",
], ],
cmd: "$(location aprotoc) --proto_path=external/chromium_org/third_party/metrics_proto --cpp_out=lite=true:$(genDir)/external/chromium_org/third_party/metrics_proto/ $(in)", cmd: "$(location cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_) --proto_path=external/chromium_org/third_party/metrics_proto --cpp_out=lite=true:$(genDir)/external/chromium_org/third_party/metrics_proto/ $(in)",
out: [ out: [
"external/chromium_org/third_party/metrics_proto/call_stack_profile.pb.h", "external/chromium_org/third_party/metrics_proto/call_stack_profile.pb.h",
"external/chromium_org/third_party/metrics_proto/cast_logs.pb.h", "external/chromium_org/third_party/metrics_proto/cast_logs.pb.h",
@@ -6700,6 +6710,420 @@ cc_library_static {
cpp_std: "c++20", cpp_std: "c++20",
} }
// GN: //third_party/protobuf:protobuf_full
cc_library_static {
name: "cronet_aml_third_party_protobuf_protobuf_full",
srcs: [
"third_party/protobuf/src/google/protobuf/any.cc",
"third_party/protobuf/src/google/protobuf/any.pb.cc",
"third_party/protobuf/src/google/protobuf/any_lite.cc",
"third_party/protobuf/src/google/protobuf/api.pb.cc",
"third_party/protobuf/src/google/protobuf/arena.cc",
"third_party/protobuf/src/google/protobuf/arenastring.cc",
"third_party/protobuf/src/google/protobuf/arenaz_sampler.cc",
"third_party/protobuf/src/google/protobuf/compiler/importer.cc",
"third_party/protobuf/src/google/protobuf/compiler/parser.cc",
"third_party/protobuf/src/google/protobuf/descriptor.cc",
"third_party/protobuf/src/google/protobuf/descriptor.pb.cc",
"third_party/protobuf/src/google/protobuf/descriptor_database.cc",
"third_party/protobuf/src/google/protobuf/duration.pb.cc",
"third_party/protobuf/src/google/protobuf/dynamic_message.cc",
"third_party/protobuf/src/google/protobuf/empty.pb.cc",
"third_party/protobuf/src/google/protobuf/extension_set.cc",
"third_party/protobuf/src/google/protobuf/extension_set_heavy.cc",
"third_party/protobuf/src/google/protobuf/field_mask.pb.cc",
"third_party/protobuf/src/google/protobuf/generated_enum_util.cc",
"third_party/protobuf/src/google/protobuf/generated_message_bases.cc",
"third_party/protobuf/src/google/protobuf/generated_message_reflection.cc",
"third_party/protobuf/src/google/protobuf/generated_message_tctable_full.cc",
"third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc",
"third_party/protobuf/src/google/protobuf/generated_message_util.cc",
"third_party/protobuf/src/google/protobuf/implicit_weak_message.cc",
"third_party/protobuf/src/google/protobuf/inlined_string_field.cc",
"third_party/protobuf/src/google/protobuf/io/coded_stream.cc",
"third_party/protobuf/src/google/protobuf/io/gzip_stream.cc",
"third_party/protobuf/src/google/protobuf/io/io_win32.cc",
"third_party/protobuf/src/google/protobuf/io/printer.cc",
"third_party/protobuf/src/google/protobuf/io/strtod.cc",
"third_party/protobuf/src/google/protobuf/io/tokenizer.cc",
"third_party/protobuf/src/google/protobuf/io/zero_copy_stream.cc",
"third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc",
"third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc",
"third_party/protobuf/src/google/protobuf/map.cc",
"third_party/protobuf/src/google/protobuf/map_field.cc",
"third_party/protobuf/src/google/protobuf/message.cc",
"third_party/protobuf/src/google/protobuf/message_lite.cc",
"third_party/protobuf/src/google/protobuf/parse_context.cc",
"third_party/protobuf/src/google/protobuf/reflection_ops.cc",
"third_party/protobuf/src/google/protobuf/repeated_field.cc",
"third_party/protobuf/src/google/protobuf/repeated_ptr_field.cc",
"third_party/protobuf/src/google/protobuf/service.cc",
"third_party/protobuf/src/google/protobuf/source_context.pb.cc",
"third_party/protobuf/src/google/protobuf/struct.pb.cc",
"third_party/protobuf/src/google/protobuf/stubs/bytestream.cc",
"third_party/protobuf/src/google/protobuf/stubs/common.cc",
"third_party/protobuf/src/google/protobuf/stubs/int128.cc",
"third_party/protobuf/src/google/protobuf/stubs/status.cc",
"third_party/protobuf/src/google/protobuf/stubs/statusor.cc",
"third_party/protobuf/src/google/protobuf/stubs/stringpiece.cc",
"third_party/protobuf/src/google/protobuf/stubs/stringprintf.cc",
"third_party/protobuf/src/google/protobuf/stubs/structurally_valid.cc",
"third_party/protobuf/src/google/protobuf/stubs/strutil.cc",
"third_party/protobuf/src/google/protobuf/stubs/substitute.cc",
"third_party/protobuf/src/google/protobuf/stubs/time.cc",
"third_party/protobuf/src/google/protobuf/text_format.cc",
"third_party/protobuf/src/google/protobuf/timestamp.pb.cc",
"third_party/protobuf/src/google/protobuf/type.pb.cc",
"third_party/protobuf/src/google/protobuf/unknown_field_set.cc",
"third_party/protobuf/src/google/protobuf/util/delimited_message_util.cc",
"third_party/protobuf/src/google/protobuf/util/field_comparator.cc",
"third_party/protobuf/src/google/protobuf/util/field_mask_util.cc",
"third_party/protobuf/src/google/protobuf/util/internal/datapiece.cc",
"third_party/protobuf/src/google/protobuf/util/internal/default_value_objectwriter.cc",
"third_party/protobuf/src/google/protobuf/util/internal/error_listener.cc",
"third_party/protobuf/src/google/protobuf/util/internal/field_mask_utility.cc",
"third_party/protobuf/src/google/protobuf/util/internal/json_escaping.cc",
"third_party/protobuf/src/google/protobuf/util/internal/json_objectwriter.cc",
"third_party/protobuf/src/google/protobuf/util/internal/json_stream_parser.cc",
"third_party/protobuf/src/google/protobuf/util/internal/object_writer.cc",
"third_party/protobuf/src/google/protobuf/util/internal/proto_writer.cc",
"third_party/protobuf/src/google/protobuf/util/internal/protostream_objectsource.cc",
"third_party/protobuf/src/google/protobuf/util/internal/protostream_objectwriter.cc",
"third_party/protobuf/src/google/protobuf/util/internal/type_info.cc",
"third_party/protobuf/src/google/protobuf/util/internal/utility.cc",
"third_party/protobuf/src/google/protobuf/util/json_util.cc",
"third_party/protobuf/src/google/protobuf/util/message_differencer.cc",
"third_party/protobuf/src/google/protobuf/util/time_util.cc",
"third_party/protobuf/src/google/protobuf/util/type_resolver_util.cc",
"third_party/protobuf/src/google/protobuf/wire_format.cc",
"third_party/protobuf/src/google/protobuf/wire_format_lite.cc",
"third_party/protobuf/src/google/protobuf/wrappers.pb.cc",
],
static_libs: [
"cronet_aml_third_party_zlib_zlib",
],
host_supported: true,
device_supported: false,
defaults: [
"cronet_aml_defaults",
],
cflags: [
"-DCR_CLANG_REVISION=\"llvmorg-16-init-8697-g60809cd2-1\"",
"-DCR_LIBCXX_REVISION=47b31179d10646029c260702650a25d24f555acc",
"-DCR_SYSROOT_KEY=20220331T153654Z-0",
"-DDCHECK_ALWAYS_ON=1",
"-DDYNAMIC_ANNOTATIONS_ENABLED=1",
"-DGOOGLE_PROTOBUF_INTERNAL_DONATE_STEAL_INLINE=0",
"-DGOOGLE_PROTOBUF_NO_RTTI",
"-DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER",
"-DHAVE_PTHREAD",
"-DHAVE_ZLIB",
"-DUSE_AURA=1",
"-DUSE_OZONE=1",
"-DUSE_UDEV",
"-D_DEBUG",
"-D_FILE_OFFSET_BITS=64",
"-D_GNU_SOURCE",
"-D_LARGEFILE64_SOURCE",
"-D_LARGEFILE_SOURCE",
"-D_LIBCPP_AVAILABILITY_CUSTOM_VERBOSE_ABORT_PROVIDED=1",
"-D_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS",
"-D_LIBCPP_ENABLE_ASSERTIONS_DEFAULT=1",
"-D_LIBCXXABI_DISABLE_VISIBILITY_ANNOTATIONS",
"-UANDROID",
],
local_include_dirs: [
"./",
"buildtools/third_party/libc++/",
"buildtools/third_party/libc++/trunk/include",
"buildtools/third_party/libc++abi/trunk/include",
"third_party/protobuf/src/",
"third_party/zlib/",
"build/linux/debian_bullseye_amd64-sysroot/usr/include/x86_64-linux-gnu",
"build/linux/debian_bullseye_amd64-sysroot/usr/include",
],
cpp_std: "c++20",
}
// GN: //third_party/protobuf:protobuf_lite
cc_library_static {
name: "cronet_aml_third_party_protobuf_protobuf_lite",
srcs: [
"third_party/protobuf/src/google/protobuf/any_lite.cc",
"third_party/protobuf/src/google/protobuf/arena.cc",
"third_party/protobuf/src/google/protobuf/arenastring.cc",
"third_party/protobuf/src/google/protobuf/arenaz_sampler.cc",
"third_party/protobuf/src/google/protobuf/extension_set.cc",
"third_party/protobuf/src/google/protobuf/generated_enum_util.cc",
"third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc",
"third_party/protobuf/src/google/protobuf/generated_message_util.cc",
"third_party/protobuf/src/google/protobuf/implicit_weak_message.cc",
"third_party/protobuf/src/google/protobuf/inlined_string_field.cc",
"third_party/protobuf/src/google/protobuf/io/coded_stream.cc",
"third_party/protobuf/src/google/protobuf/io/io_win32.cc",
"third_party/protobuf/src/google/protobuf/io/strtod.cc",
"third_party/protobuf/src/google/protobuf/io/zero_copy_stream.cc",
"third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc",
"third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc",
"third_party/protobuf/src/google/protobuf/map.cc",
"third_party/protobuf/src/google/protobuf/message_lite.cc",
"third_party/protobuf/src/google/protobuf/parse_context.cc",
"third_party/protobuf/src/google/protobuf/repeated_field.cc",
"third_party/protobuf/src/google/protobuf/repeated_ptr_field.cc",
"third_party/protobuf/src/google/protobuf/stubs/bytestream.cc",
"third_party/protobuf/src/google/protobuf/stubs/common.cc",
"third_party/protobuf/src/google/protobuf/stubs/int128.cc",
"third_party/protobuf/src/google/protobuf/stubs/status.cc",
"third_party/protobuf/src/google/protobuf/stubs/statusor.cc",
"third_party/protobuf/src/google/protobuf/stubs/stringpiece.cc",
"third_party/protobuf/src/google/protobuf/stubs/stringprintf.cc",
"third_party/protobuf/src/google/protobuf/stubs/structurally_valid.cc",
"third_party/protobuf/src/google/protobuf/stubs/strutil.cc",
"third_party/protobuf/src/google/protobuf/stubs/time.cc",
"third_party/protobuf/src/google/protobuf/wire_format_lite.cc",
],
shared_libs: [
"liblog",
],
defaults: [
"cronet_aml_defaults",
],
cflags: [
"-DANDROID",
"-DANDROID_NDK_VERSION_ROLL=r23_1",
"-DCR_CLANG_REVISION=\"llvmorg-16-init-8697-g60809cd2-1\"",
"-DCR_LIBCXX_REVISION=47b31179d10646029c260702650a25d24f555acc",
"-DDCHECK_ALWAYS_ON=1",
"-DDYNAMIC_ANNOTATIONS_ENABLED=1",
"-DGOOGLE_PROTOBUF_INTERNAL_DONATE_STEAL_INLINE=0",
"-DGOOGLE_PROTOBUF_NO_RTTI",
"-DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER",
"-DHAVE_PTHREAD",
"-DHAVE_SYS_UIO_H",
"-D_DEBUG",
"-D_GNU_SOURCE",
"-D_LIBCPP_AVAILABILITY_CUSTOM_VERBOSE_ABORT_PROVIDED=1",
"-D_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS",
"-D_LIBCPP_ENABLE_ASSERTIONS_DEFAULT=1",
"-D_LIBCXXABI_DISABLE_VISIBILITY_ANNOTATIONS",
],
local_include_dirs: [
"./",
"buildtools/third_party/libc++/",
"buildtools/third_party/libc++/trunk/include",
"buildtools/third_party/libc++abi/trunk/include",
"third_party/protobuf/src/",
"third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include",
],
cpp_std: "c++20",
}
// GN: //third_party/protobuf:protoc(//build/toolchain/linux:clang_x64)
cc_binary {
name: "cronet_aml_third_party_protobuf_protoc___build_toolchain_linux_clang_x64_",
srcs: [
":cronet_aml_buildtools_third_party_libc___libc__",
":cronet_aml_buildtools_third_party_libc__abi_libc__abi",
":cronet_aml_buildtools_third_party_libunwind_libunwind",
"third_party/protobuf/src/google/protobuf/compiler/main.cc",
],
static_libs: [
"cronet_aml_third_party_protobuf_protobuf_full",
"cronet_aml_third_party_protobuf_protoc_lib",
"cronet_aml_third_party_zlib_zlib",
],
host_supported: true,
device_supported: false,
defaults: [
"cronet_aml_defaults",
],
cflags: [
"-DANDROID",
"-DANDROID_NDK_VERSION_ROLL=r23_1",
"-DCR_CLANG_REVISION=\"llvmorg-16-init-8697-g60809cd2-1\"",
"-DCR_LIBCXX_REVISION=47b31179d10646029c260702650a25d24f555acc",
"-DCR_SYSROOT_KEY=20220331T153654Z-0",
"-DDCHECK_ALWAYS_ON=1",
"-DDYNAMIC_ANNOTATIONS_ENABLED=1",
"-DGOOGLE_PROTOBUF_INTERNAL_DONATE_STEAL_INLINE=0",
"-DGOOGLE_PROTOBUF_NO_RTTI",
"-DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER",
"-DHAVE_PTHREAD",
"-DHAVE_SYS_UIO_H",
"-DLIBCXXABI_SILENT_TERMINATE",
"-DLIBCXX_BUILDING_LIBCXXABI",
"-DUSE_AURA=1",
"-DUSE_OZONE=1",
"-DUSE_UDEV",
"-D_DEBUG",
"-D_FILE_OFFSET_BITS=64",
"-D_GNU_SOURCE",
"-D_LARGEFILE64_SOURCE",
"-D_LARGEFILE_SOURCE",
"-D_LIBCPP_AVAILABILITY_CUSTOM_VERBOSE_ABORT_PROVIDED=1",
"-D_LIBCPP_BUILDING_LIBRARY",
"-D_LIBCPP_CONSTINIT=constinit",
"-D_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS",
"-D_LIBCPP_ENABLE_ASSERTIONS_DEFAULT=1",
"-D_LIBCPP_OVERRIDABLE_FUNC_VIS=__attribute__((__visibility__(\"default\")))",
"-D_LIBCXXABI_DISABLE_VISIBILITY_ANNOTATIONS",
"-D_LIBUNWIND_DISABLE_VISIBILITY_ANNOTATIONS",
"-D_LIBUNWIND_IS_NATIVE_ONLY",
],
local_include_dirs: [
"./",
"buildtools/third_party/libc++/",
"buildtools/third_party/libc++/trunk/include",
"buildtools/third_party/libc++/trunk/src/",
"buildtools/third_party/libc++abi/trunk/include",
"buildtools/third_party/libunwind/trunk/include/",
"third_party/protobuf/src/",
"third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include",
"build/linux/debian_bullseye_amd64-sysroot/usr/include/x86_64-linux-gnu",
"build/linux/debian_bullseye_amd64-sysroot/usr/include",
],
cpp_std: "c++20",
cppflags: [
"-fexceptions",
],
rtti: true,
}
// GN: //third_party/protobuf:protoc_lib
cc_library_static {
name: "cronet_aml_third_party_protobuf_protoc_lib",
srcs: [
"third_party/protobuf/src/google/protobuf/compiler/code_generator.cc",
"third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_extension.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_file.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_map_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_parse_function_generator.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_service.cc",
"third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_string_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc",
"third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_context.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_enum.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_enum_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_enum_field_lite.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_enum_lite.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_extension.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_extension_lite.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_file.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_generator.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_generator_factory.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_kotlin_generator.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_map_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_map_field_lite.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_message.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_message_builder.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_message_builder_lite.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_message_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_message_field_lite.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_message_lite.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_name_resolver.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_primitive_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_primitive_field_lite.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_shared_code_generator.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_string_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/java/java_string_field_lite.cc",
"third_party/protobuf/src/google/protobuf/compiler/js/js_generator.cc",
"third_party/protobuf/src/google/protobuf/compiler/js/well_known_types_embed.cc",
"third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum.cc",
"third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_extension.cc",
"third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_file.cc",
"third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_generator.cc",
"third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc",
"third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_message.cc",
"third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc",
"third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc",
"third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc",
"third_party/protobuf/src/google/protobuf/compiler/plugin.cc",
"third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc",
"third_party/protobuf/src/google/protobuf/compiler/python/python_generator.cc",
"third_party/protobuf/src/google/protobuf/compiler/python/python_helpers.cc",
"third_party/protobuf/src/google/protobuf/compiler/python/python_pyi_generator.cc",
"third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.cc",
"third_party/protobuf/src/google/protobuf/compiler/subprocess.cc",
"third_party/protobuf/src/google/protobuf/compiler/zip_writer.cc",
],
static_libs: [
"cronet_aml_third_party_protobuf_protobuf_full",
"cronet_aml_third_party_zlib_zlib",
],
host_supported: true,
device_supported: false,
defaults: [
"cronet_aml_defaults",
],
cflags: [
"-DCR_CLANG_REVISION=\"llvmorg-16-init-8697-g60809cd2-1\"",
"-DCR_LIBCXX_REVISION=47b31179d10646029c260702650a25d24f555acc",
"-DCR_SYSROOT_KEY=20220331T153654Z-0",
"-DDCHECK_ALWAYS_ON=1",
"-DDYNAMIC_ANNOTATIONS_ENABLED=1",
"-DGOOGLE_PROTOBUF_INTERNAL_DONATE_STEAL_INLINE=0",
"-DGOOGLE_PROTOBUF_NO_RTTI",
"-DGOOGLE_PROTOBUF_NO_STATIC_INITIALIZER",
"-DHAVE_PTHREAD",
"-DUSE_AURA=1",
"-DUSE_OZONE=1",
"-DUSE_UDEV",
"-D_DEBUG",
"-D_FILE_OFFSET_BITS=64",
"-D_GNU_SOURCE",
"-D_LARGEFILE64_SOURCE",
"-D_LARGEFILE_SOURCE",
"-D_LIBCPP_AVAILABILITY_CUSTOM_VERBOSE_ABORT_PROVIDED=1",
"-D_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS",
"-D_LIBCPP_ENABLE_ASSERTIONS_DEFAULT=1",
"-D_LIBCXXABI_DISABLE_VISIBILITY_ANNOTATIONS",
"-UANDROID",
],
local_include_dirs: [
"./",
"buildtools/third_party/libc++/",
"buildtools/third_party/libc++/trunk/include",
"buildtools/third_party/libc++abi/trunk/include",
"third_party/protobuf/src/",
"build/linux/debian_bullseye_amd64-sysroot/usr/include/x86_64-linux-gnu",
"build/linux/debian_bullseye_amd64-sysroot/usr/include",
],
cpp_std: "c++20",
}
// GN: //third_party/zlib:zlib // GN: //third_party/zlib:zlib
cc_library_static { cc_library_static {
name: "cronet_aml_third_party_zlib_zlib", name: "cronet_aml_third_party_zlib_zlib",
@@ -6761,6 +7185,8 @@ cc_library_static {
"-D_LIBCXXABI_DISABLE_VISIBILITY_ANNOTATIONS", "-D_LIBCXXABI_DISABLE_VISIBILITY_ANNOTATIONS",
"-D__STDC_CONSTANT_MACROS", "-D__STDC_CONSTANT_MACROS",
"-D__STDC_FORMAT_MACROS", "-D__STDC_FORMAT_MACROS",
"-mpclmul",
"-mssse3",
], ],
local_include_dirs: [ local_include_dirs: [
"./", "./",

View File

@@ -91,7 +91,6 @@ static_library_allowlist = [
# Include directories that will be removed from all targets. # Include directories that will be removed from all targets.
local_include_dirs_denylist = [ local_include_dirs_denylist = [
'third_party/protobuf/src/',
] ]
# Name of the module which settings such as compiler flags for all other # Name of the module which settings such as compiler flags for all other
@@ -108,7 +107,12 @@ buildtools_protobuf_src = '//buildtools/protobuf/src'
android_protobuf_src = 'external/protobuf/src' android_protobuf_src = 'external/protobuf/src'
# Compiler flags which are passed through to the blueprint. # Compiler flags which are passed through to the blueprint.
cflag_allowlist = r'^-DPERFETTO.*$' cflag_allowlist = [
# needed for zlib:zlib
"-mpclmul",
# needed for zlib:zlib
"-mssse3",
]
# Additional arguments to apply to Android.bp rules. # Additional arguments to apply to Android.bp rules.
additional_args = { additional_args = {
@@ -129,118 +133,11 @@ additional_args = {
], ],
} }
def enable_gtest_and_gmock(module):
module.static_libs.add('libgmock')
module.static_libs.add('libgtest')
if module.name != 'perfetto_gtest_logcat_printer':
module.whole_static_libs.add('perfetto_gtest_logcat_printer')
def enable_protobuf_full(module):
if module.type not in ['genrule', 'filegroup']:
module.static_libs.add('libprotobuf-cpp-full')
def enable_protobuf_lite(module):
if module.type not in ['genrule', 'filegroup']:
module.static_libs.add('libprotobuf-cpp-lite')
def enable_protoc_lib(module):
if module.type not in ['genrule', 'filegroup']:
module.static_libs.add('libprotoc')
def enable_libunwindstack(module):
if module.name != 'heapprofd_standalone_client':
module.shared_libs.add('libunwindstack')
module.shared_libs.add('libprocinfo')
module.shared_libs.add('libbase')
else:
module.static_libs.add('libunwindstack')
module.static_libs.add('libprocinfo')
module.static_libs.add('libbase')
module.static_libs.add('liblzma')
module.static_libs.add('libdexfile_support')
module.runtime_libs.add('libdexfile') # libdexfile_support dependency
def enable_libunwind(module):
# libunwind is disabled on Darwin so we cannot depend on it.
pass
def enable_sqlite(module):
if module.type == 'cc_binary_host':
module.static_libs.add('libsqlite')
module.static_libs.add('sqlite_ext_percentile')
elif module.host_supported:
# Copy what the sqlite3 command line tool does.
module.android.shared_libs.add('libsqlite')
module.android.shared_libs.add('libicu')
module.android.shared_libs.add('liblog')
module.android.shared_libs.add('libutils')
module.android.static_libs.add('sqlite_ext_percentile')
module.host.static_libs.add('libsqlite')
module.host.static_libs.add('sqlite_ext_percentile')
else:
module.shared_libs.add('libsqlite')
module.shared_libs.add('libicu')
module.shared_libs.add('liblog')
module.shared_libs.add('libutils')
module.static_libs.add('sqlite_ext_percentile')
def enable_zlib(module):
if module.type == 'cc_binary_host':
module.static_libs.add('libz')
elif module.host_supported:
module.android.shared_libs.add('libz')
module.host.static_libs.add('libz')
else:
module.shared_libs.add('libz')
def enable_uapi_headers(module):
module.include_dirs.add('bionic/libc/kernel')
def enable_bionic_libc_platform_headers_on_android(module):
module.header_libs.add('bionic_libc_platform_headers')
# Android equivalents for third-party libraries that the upstream project # Android equivalents for third-party libraries that the upstream project
# depends on. # depends on.
builtin_deps = { builtin_deps = {
'//gn:default_deps':
lambda x: None,
'//gn:gtest_main':
lambda x: None,
'//gn:gtest_and_gmock':
enable_gtest_and_gmock,
'//gn:libunwind':
enable_libunwind,
'//gn:libunwindstack':
enable_libunwindstack,
'//gn:sqlite':
enable_sqlite,
'//gn:zlib':
enable_zlib,
'//gn:bionic_kernel_uapi_headers':
enable_uapi_headers,
'//net/tools/root_store_tool:root_store_tool': '//net/tools/root_store_tool:root_store_tool':
lambda x: None, lambda x: None,
'//src/profiling/memory:bionic_libc_platform_headers_on_android':
enable_bionic_libc_platform_headers_on_android,
'//third_party/protobuf:protoc':
lambda x: None,
'//third_party/protobuf:protobuf_full':
enable_protobuf_full,
'//third_party/protobuf:protobuf_lite':
enable_protobuf_lite,
'//third_party/protobuf:protoc_lib':
enable_protoc_lib,
} }
# ---------------------------------------------------------------------------- # ----------------------------------------------------------------------------
@@ -525,13 +422,15 @@ def create_proto_modules(blueprint, gn, target):
""" """
assert (target.type == 'proto_library') assert (target.type == 'proto_library')
tools = {'aprotoc'} protoc_gn_target_name = "//third_party/protobuf:protoc(//build/toolchain/linux:clang_x64)"
protoc_module_name = label_to_module_name(protoc_gn_target_name)
tools = {protoc_module_name}
cpp_out_dir = '$(genDir)/%s/%s/' % (tree_path, target.proto_in_dir) cpp_out_dir = '$(genDir)/%s/%s/' % (tree_path, target.proto_in_dir)
target_module_name = label_to_module_name(target.name) target_module_name = label_to_module_name(target.name)
# In GN builds the proto path is always relative to the output directory # In GN builds the proto path is always relative to the output directory
# (out/tmp.xxx). # (out/tmp.xxx).
cmd = ['$(location aprotoc)'] cmd = ['$(location %s)' % protoc_module_name]
cmd += ['--proto_path=%s/%s' % (tree_path, target.proto_in_dir)] cmd += ['--proto_path=%s/%s' % (tree_path, target.proto_in_dir)]
if buildtools_protobuf_src in target.proto_paths: if buildtools_protobuf_src in target.proto_paths:
@@ -1039,7 +938,7 @@ def create_action_module(blueprint, target):
def _get_cflags(target): def _get_cflags(target):
cflags = {flag for flag in target.cflags if re.match(cflag_allowlist, flag)} cflags = {flag for flag in target.cflags if flag in cflag_allowlist}
# Consider proper allowlist or denylist if needed # Consider proper allowlist or denylist if needed
cflags |= set("-D%s" % define.replace("\"", "\\\"") for define in target.defines) cflags |= set("-D%s" % define.replace("\"", "\\\"") for define in target.defines)
# -DANDROID is added by default but target.defines contain -DANDROID if it's required. # -DANDROID is added by default but target.defines contain -DANDROID if it's required.

View File

@@ -280,6 +280,7 @@ class GnParser(object):
target.proto_paths.update(self.get_proto_paths(proto_desc)) target.proto_paths.update(self.get_proto_paths(proto_desc))
target.proto_exports.update(self.get_proto_exports(proto_desc)) target.proto_exports.update(self.get_proto_exports(proto_desc))
target.proto_in_dir = self.get_proto_in_dir(proto_desc) target.proto_in_dir = self.get_proto_in_dir(proto_desc)
target.deps.update(proto_desc.get('deps', []))
target.arch[arch].sources.update(proto_desc.get('sources', [])) target.arch[arch].sources.update(proto_desc.get('sources', []))
assert (all(x.endswith('.proto') for x in target.arch[arch].sources)) assert (all(x.endswith('.proto') for x in target.arch[arch].sources))
elif target.type == 'source_set': elif target.type == 'source_set':
@@ -350,9 +351,7 @@ class GnParser(object):
if dep.type == 'static_library': if dep.type == 'static_library':
# Bubble up static_libs. Necessary, since soong does not propagate # Bubble up static_libs. Necessary, since soong does not propagate
# static_libs up the build tree. # static_libs up the build tree.
# Protobuf dependencies are handled separately. target.transitive_static_libs_deps.add(dep_name)
if '//third_party/protobuf' not in dep_name:
target.transitive_static_libs_deps.add(dep_name)
target.transitive_static_libs_deps.update(dep.transitive_static_libs_deps) target.transitive_static_libs_deps.update(dep.transitive_static_libs_deps)
target.deps.update(target.transitive_static_libs_deps) target.deps.update(target.transitive_static_libs_deps)