From f589515e567c3a5b48aecaefae35efbd33e4d09c Mon Sep 17 00:00:00 2001 From: Mike Kruskal Date: Tue, 20 Dec 2022 18:43:30 -0800 Subject: [PATCH] Regenerate stale files before every test that requires them. These files get automatically updated as post-submit actions, and there's no reason to ever used the checked in versions. Daily run staleness test verify that those don't go out of date. PiperOrigin-RevId: 496800868 --- kokoro/linux/32-bit/build.sh | 2 + kokoro/linux/cmake/build.sh | 4 +- kokoro/linux/cmake_install/build.sh | 4 +- kokoro/linux/cmake_ninja/build.sh | 4 +- kokoro/linux/cmake_shared/build.sh | 4 +- kokoro/linux/csharp_aarch64/build.sh | 4 +- kokoro/linux/php_aarch64/build.sh | 4 +- kokoro/linux/ruby_aarch64/build.sh | 4 +- kokoro/macos-next/cpp/build.sh | 4 +- kokoro/release/protoc/windows/build.bat | 9 +- kokoro/windows/bazel/build.bat | 22 - kokoro/windows/prepare_build_win64.bat | 28 +- push_auto_update.sh | 4 +- regenerate_stale_files.sh | 21 + src/file_lists.cmake | 721 ------------------------ 15 files changed, 77 insertions(+), 762 deletions(-) create mode 100755 regenerate_stale_files.sh delete mode 100644 src/file_lists.cmake diff --git a/kokoro/linux/32-bit/build.sh b/kokoro/linux/32-bit/build.sh index e2613f86f2..1ee1a0544a 100755 --- a/kokoro/linux/32-bit/build.sh +++ b/kokoro/linux/32-bit/build.sh @@ -15,6 +15,8 @@ GIT_REPO_ROOT=$(pwd) CONTAINER_IMAGE=gcr.io/protobuf-build/php/32bit@sha256:8c3cf171ac8a3f91296517d822a26b1cbb6696035bdb723db68928d52bdbfc40 git submodule update --init --recursive +use_bazel.sh 5.1.1 +./regenerate_stale_files.sh docker run \ "$@" \ diff --git a/kokoro/linux/cmake/build.sh b/kokoro/linux/cmake/build.sh index ee06d95cf9..7479664a98 100755 --- a/kokoro/linux/cmake/build.sh +++ b/kokoro/linux/cmake/build.sh @@ -10,8 +10,10 @@ GIT_REPO_ROOT=`pwd` CONTAINER_IMAGE=gcr.io/protobuf-build/cmake/linux@sha256:79e6ed9d7f3f8e56167a3309a521e5b7e6a212bfb19855c65ee1cbb6f9099671 -# Update git submodules +# Update git submodules and regenerate files git submodule update --init --recursive +use_bazel.sh 5.1.1 +./regenerate_stale_files.sh tmpfile=$(mktemp -u) diff --git a/kokoro/linux/cmake_install/build.sh b/kokoro/linux/cmake_install/build.sh index 7fdf267f74..80fd589a9b 100755 --- a/kokoro/linux/cmake_install/build.sh +++ b/kokoro/linux/cmake_install/build.sh @@ -10,8 +10,10 @@ GIT_REPO_ROOT=`pwd` CONTAINER_IMAGE=gcr.io/protobuf-build/cmake/linux@sha256:79e6ed9d7f3f8e56167a3309a521e5b7e6a212bfb19855c65ee1cbb6f9099671 -# Update git submodules +# Update git submodules and regenerate files git submodule update --init --recursive +use_bazel.sh 5.1.1 +./regenerate_stale_files.sh tmpfile=$(mktemp -u) diff --git a/kokoro/linux/cmake_ninja/build.sh b/kokoro/linux/cmake_ninja/build.sh index 21cc01e56a..468f7bf02d 100755 --- a/kokoro/linux/cmake_ninja/build.sh +++ b/kokoro/linux/cmake_ninja/build.sh @@ -10,8 +10,10 @@ GIT_REPO_ROOT=`pwd` CONTAINER_IMAGE=gcr.io/protobuf-build/cmake/linux@sha256:79e6ed9d7f3f8e56167a3309a521e5b7e6a212bfb19855c65ee1cbb6f9099671 -# Update git submodules +# Update git submodules and regenerate files git submodule update --init --recursive +use_bazel.sh 5.1.1 +./regenerate_stale_files.sh tmpfile=$(mktemp -u) diff --git a/kokoro/linux/cmake_shared/build.sh b/kokoro/linux/cmake_shared/build.sh index 1fda3dfca4..d8eefd0471 100755 --- a/kokoro/linux/cmake_shared/build.sh +++ b/kokoro/linux/cmake_shared/build.sh @@ -10,8 +10,10 @@ GIT_REPO_ROOT=`pwd` CONTAINER_IMAGE=gcr.io/protobuf-build/cmake/linux@sha256:79e6ed9d7f3f8e56167a3309a521e5b7e6a212bfb19855c65ee1cbb6f9099671 -# Update git submodules +# Update git submodules and regenerate files git submodule update --init --recursive +use_bazel.sh 5.1.1 +./regenerate_stale_files.sh tmpfile=$(mktemp -u) diff --git a/kokoro/linux/csharp_aarch64/build.sh b/kokoro/linux/csharp_aarch64/build.sh index db3fc21f0f..91f8f38db6 100755 --- a/kokoro/linux/csharp_aarch64/build.sh +++ b/kokoro/linux/csharp_aarch64/build.sh @@ -8,8 +8,10 @@ set -ex # Change to repo root cd $(dirname $0)/../../.. -# Initialize any submodules. +# Initialize any submodules and regenerate files git submodule update --init --recursive +use_bazel.sh 5.1.1 +./regenerate_stale_files.sh kokoro/linux/aarch64/qemu_helpers/prepare_qemu.sh diff --git a/kokoro/linux/php_aarch64/build.sh b/kokoro/linux/php_aarch64/build.sh index eba8b5538b..12132050fa 100755 --- a/kokoro/linux/php_aarch64/build.sh +++ b/kokoro/linux/php_aarch64/build.sh @@ -8,8 +8,10 @@ set -ex # Change to repo root cd $(dirname $0)/../../.. -# Initialize any submodules. +# Initialize any submodules and regenerate files. git submodule update --init --recursive +use_bazel.sh 5.1.1 +./regenerate_stale_files.sh kokoro/linux/aarch64/qemu_helpers/prepare_qemu.sh diff --git a/kokoro/linux/ruby_aarch64/build.sh b/kokoro/linux/ruby_aarch64/build.sh index 6473e0d222..888e9e5966 100755 --- a/kokoro/linux/ruby_aarch64/build.sh +++ b/kokoro/linux/ruby_aarch64/build.sh @@ -8,8 +8,10 @@ set -ex # Change to repo root cd $(dirname $0)/../../.. -# Initialize any submodules. +# Initialize any submodules and regenerate files. git submodule update --init --recursive +use_bazel.sh 5.1.1 +./regenerate_stale_files.sh kokoro/linux/aarch64/qemu_helpers/prepare_qemu.sh diff --git a/kokoro/macos-next/cpp/build.sh b/kokoro/macos-next/cpp/build.sh index 451c8508db..65f32c0e68 100755 --- a/kokoro/macos-next/cpp/build.sh +++ b/kokoro/macos-next/cpp/build.sh @@ -19,9 +19,11 @@ export CTEST_PARALLEL_LEVEL cd $(dirname $0)/../../.. # -# Update submodules +# Update submodules and regenerate files # git submodule update --init --recursive +bazel test //src:cmake_lists_staleness_test || ./bazel-bin/src/cmake_lists_staleness_test --fix +bazel test //src/google/protobuf:well_known_types_staleness_test || ./bazel-bin/src/google/protobuf/well_known_types_staleness_test --fix # # Run build diff --git a/kokoro/release/protoc/windows/build.bat b/kokoro/release/protoc/windows/build.bat index 50ad223376..9d1bacbd54 100644 --- a/kokoro/release/protoc/windows/build.bat +++ b/kokoro/release/protoc/windows/build.bat @@ -4,16 +4,11 @@ set vcplatform32=win32 set vcplatform64=x64 set configuration=Release -:: VS2017 is installed, but will not be selected by default. This command sets -:: up the environment so that CMake will find and use it: -call "%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 - echo Building protoc cd github\protobuf -echo Update Submodules -echo This is needed because this build uses CMake <3.13. -git submodule update --init --recursive +call kokoro\windows\prepare_build_win64.bat || goto :error + set ABSL_ROOT_DIR=%cd%\third_party\abseil-cpp mkdir build32 diff --git a/kokoro/windows/bazel/build.bat b/kokoro/windows/bazel/build.bat index a783a075dd..1916406d99 100644 --- a/kokoro/windows/bazel/build.bat +++ b/kokoro/windows/bazel/build.bat @@ -3,28 +3,6 @@ cd /d %~dp0\..\..\.. call kokoro\windows\prepare_build_win64.bat || goto :error -@rem Allow Bazel to create short paths. -fsutil 8dot3name set 0 - -@rem TODO(b/241475022) Use docker to guarantee better stability. - -@rem Reinstall Bazel due to corrupt installation in kokoro. -bazel version -choco install bazel -y -i --version 5.1.0 -bazel version - -@rem Set invocation ID so that bazel run is known to kokoro -uuidgen > %KOKORO_ARTIFACTS_DIR%\bazel_invocation_ids -SET /p BAZEL_INTERNAL_INVOCATION_ID=<%KOKORO_ARTIFACTS_DIR%\bazel_invocation_ids - -@rem Make paths as short as possible to avoid long path issues. -set BAZEL_STARTUP=--output_user_root=C:/tmp --windows_enable_symlinks -set BAZEL_FLAGS=--enable_runfiles --keep_going --test_output=errors ^ - --verbose_failures ^ - --invocation_id=%BAZEL_INTERNAL_INVOCATION_ID% ^ - --google_credentials=%KOKORO_BAZEL_AUTH_CREDENTIAL% ^ - --remote_cache=https://storage.googleapis.com/protobuf-bazel-cache/%KOKORO_JOB_NAME% - @rem Build libraries first. bazel %BAZEL_STARTUP% build //:protoc //:protobuf //:protobuf_lite %BAZEL_FLAGS% || goto :error diff --git a/kokoro/windows/prepare_build_win64.bat b/kokoro/windows/prepare_build_win64.bat index 07db865956..bb1c96d021 100644 --- a/kokoro/windows/prepare_build_win64.bat +++ b/kokoro/windows/prepare_build_win64.bat @@ -18,4 +18,30 @@ call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary @rem Use python3 C:\python310\python.exe -m venv venv -call venv\Scripts\activate.bat \ No newline at end of file +call venv\Scripts\activate.bat + +@rem Setup Bazel + +@rem TODO(b/241475022) Use docker to guarantee better stability. +@rem Allow Bazel to create short paths. +fsutil 8dot3name set 0 + +@rem Reinstall Bazel due to corrupt installation in kokoro. +bazel version +choco install bazel -y -i --version 5.1.0 +bazel version + +@rem Set invocation ID so that bazel run is known to kokoro +uuidgen > %KOKORO_ARTIFACTS_DIR%\bazel_invocation_ids +SET /p BAZEL_INTERNAL_INVOCATION_ID=<%KOKORO_ARTIFACTS_DIR%\bazel_invocation_ids + +@rem Make paths as short as possible to avoid long path issues. +set BAZEL_STARTUP=--output_user_root=C:/tmp --windows_enable_symlinks +set BAZEL_FLAGS=--enable_runfiles --keep_going --test_output=errors ^ + --verbose_failures ^ + --invocation_id=%BAZEL_INTERNAL_INVOCATION_ID% ^ + --google_credentials=%KOKORO_BAZEL_AUTH_CREDENTIAL% ^ + --remote_cache=https://storage.googleapis.com/protobuf-bazel-cache/%KOKORO_JOB_NAME% + +@rem Regenerate stale CMake configs. +bazel test //src:cmake_lists_staleness_test || call bazel-bin\src\cmake_lists_staleness_test.exe --fix diff --git a/push_auto_update.sh b/push_auto_update.sh index 52fe90361a..0d0e4371b0 100755 --- a/push_auto_update.sh +++ b/push_auto_update.sh @@ -19,9 +19,7 @@ if (echo "$previous_commit_title" | grep -q "^Auto-generate files"); then exit 0 fi -# Run the staleness tests and use them to update any stale files. -bazel test //src:cmake_lists_staleness_test || ./bazel-bin/src/cmake_lists_staleness_test --fix -bazel test //src/google/protobuf:well_known_types_staleness_test || ./bazel-bin/src/google/protobuf/well_known_types_staleness_test --fix +./regenerate_stale_files.sh # Try to determine the most recent CL or pull request. pr_from_merge=$(echo "$previous_commit_title" | sed -n 's/^Merge pull request #\([0-9]\+\).*/\1/p') diff --git a/regenerate_stale_files.sh b/regenerate_stale_files.sh new file mode 100755 index 0000000000..df89061ded --- /dev/null +++ b/regenerate_stale_files.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +# This script runs the staleness tests and uses them to update any stale +# generated files. + +set -ex + +# Cd to the repo root. +cd $(dirname -- "$0") + +# Upgrade to a supported gcc version +sudo add-apt-repository ppa:ubuntu-toolchain-r/test +sudo apt-get -y update && \ + sudo apt-get install -y \ + gcc-7 g++-7 +sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 100 --slave /usr/bin/g++ g++ /usr/bin/g++-7 +sudo update-alternatives --set gcc /usr/bin/gcc-7 + +# Run and fix all staleness tests. +bazel test //src:cmake_lists_staleness_test || ./bazel-bin/src/cmake_lists_staleness_test --fix +bazel test //src/google/protobuf:well_known_types_staleness_test || ./bazel-bin/src/google/protobuf/well_known_types_staleness_test --fix diff --git a/src/file_lists.cmake b/src/file_lists.cmake deleted file mode 100644 index f58ca32caa..0000000000 --- a/src/file_lists.cmake +++ /dev/null @@ -1,721 +0,0 @@ -# Auto-generated by @//pkg:gen_src_file_lists_cmake -# -# This file contains lists of sources based on Bazel rules. It should -# be included from a hand-written CMake file that defines targets. -# -# Changes to this file will be overwritten based on Bazel definitions. - -if(${CMAKE_VERSION} VERSION_GREATER 3.10 OR ${CMAKE_VERSION} VERSION_EQUAL 3.10) - include_guard() -endif() - -# @//pkg:protobuf -set(libprotobuf_srcs - ${protobuf_SOURCE_DIR}/src/google/protobuf/any.pb.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/api.pb.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/duration.pb.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/empty.pb.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/field_mask.pb.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/source_context.pb.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/struct.pb.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/timestamp.pb.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/type.pb.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/wrappers.pb.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/any.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/any_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_align.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_config.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arenastring.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arenaz_sampler.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/importer.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/parser.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.pb.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor_database.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/dynamic_message.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set_heavy.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_enum_util.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_bases.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_reflection.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_full.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_gen.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_util.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/implicit_weak_message.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/inlined_string_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/coded_stream.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/gzip_stream.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/io_win32.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/printer.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/strtod.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/tokenizer.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_sink.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/lexer.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/message_path.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/parser.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/unparser.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/untyped_message.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/writer.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/zero_copy_buffered_stream.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/json.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/map.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/message.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/message_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/parse_context.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_ops.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_ptr_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/service.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/common.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/text_format.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/unknown_field_set.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/delimited_message_util.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/field_comparator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/field_mask_util.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/message_differencer.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/time_util.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/type_resolver_util.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format_lite.cc -) - -# @//pkg:protobuf -set(libprotobuf_hdrs - ${protobuf_SOURCE_DIR}/src/google/protobuf/any.pb.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/api.pb.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/duration.pb.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/empty.pb.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/field_mask.pb.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/source_context.pb.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/struct.pb.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/timestamp.pb.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/type.pb.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/wrappers.pb.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/any.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_align.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_allocation_policy.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_cleanup.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_config.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arenastring.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arenaz_sampler.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/importer.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/parser.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.pb.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor_database.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/dynamic_message.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/endian.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/explicitly_constructed.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set_inl.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/field_access_listener.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_enum_reflection.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_enum_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_bases.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_reflection.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_decl.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_gen.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_impl.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/has_bits.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/implicit_weak_message.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/inlined_string_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/coded_stream.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/gzip_stream.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/io_win32.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/printer.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/strtod.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/tokenizer.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_sink.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/descriptor_traits.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/lexer.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/message_path.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/parser.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/parser_traits.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/unparser.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/unparser_traits.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/untyped_message.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/writer.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/zero_copy_buffered_stream.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/json/json.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_entry.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_entry_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_field_inl.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_field_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_type_handler.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/message.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/message_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/metadata.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/metadata_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/parse_context.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/port.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/port_def.inc - ${protobuf_SOURCE_DIR}/src/google/protobuf/port_undef.inc - ${protobuf_SOURCE_DIR}/src/google/protobuf/reflection.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_internal.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_ops.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_ptr_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/serial_arena.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/service.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/callback.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/common.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/logging.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/mathutil.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/platform_macros.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/port.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/status_macros.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/text_format.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/thread_safe_arena.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/unknown_field_set.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/delimited_message_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/field_comparator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/field_mask_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/json_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/message_differencer.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/time_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/type_resolver.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/type_resolver_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format_lite.h -) - -# @//pkg:protobuf_lite -set(libprotobuf_lite_srcs - ${protobuf_SOURCE_DIR}/src/google/protobuf/any_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_align.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_config.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arenastring.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arenaz_sampler.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_enum_util.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_util.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/implicit_weak_message.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/inlined_string_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/coded_stream.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/io_win32.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/map.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/message_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/parse_context.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_ptr_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/common.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format_lite.cc -) - -# @//pkg:protobuf_lite -set(libprotobuf_lite_hdrs - ${protobuf_SOURCE_DIR}/src/google/protobuf/any.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_align.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_allocation_policy.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_cleanup.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_config.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arenastring.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/arenaz_sampler.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/endian.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/explicitly_constructed.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set_inl.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_enum_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_decl.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_impl.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/has_bits.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/implicit_weak_message.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/inlined_string_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/coded_stream.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/io_win32.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_entry_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_field_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_type_handler.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/message_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/metadata_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/parse_context.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/port.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/port_def.inc - ${protobuf_SOURCE_DIR}/src/google/protobuf/port_undef.inc - ${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_ptr_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/serial_arena.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/callback.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/common.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/logging.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/mathutil.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/platform_macros.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/port.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/status_macros.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/thread_safe_arena.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format_lite.h -) - -# @//pkg:protoc -set(libprotoc_srcs - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/code_generator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/command_line_interface.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/enum.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/extension.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/enum_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/map_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/message_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/primitive_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/string_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/file.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/generator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/helpers.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/message.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/padding_optimizer.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/parse_function_generator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/service.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/tracker.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_enum.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_enum_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_field_base.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_generator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_helpers.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_map_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_message.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_message_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/names.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/context.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/doc_comment.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/enum.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/enum_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/enum_field_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/enum_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/extension.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/extension_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/file.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/generator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/generator_factory.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/helpers.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/kotlin_generator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/map_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/map_field_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_builder.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_builder_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_field_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_serialization.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/name_resolver.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/names.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/primitive_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/primitive_field_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/service.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/shared_code_generator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/string_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/string_field_lite.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/enum.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/enum_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/extension.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/file.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/generator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/helpers.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/import_writer.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/line_consumer.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/map_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/message.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/message_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/names.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/oneof.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/primitive_field.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/text_format_decode_data.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/php/names.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/php/php_generator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.pb.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/python/generator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/python/helpers.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/python/pyi_generator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/ruby/ruby_generator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/subprocess.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/zip_writer.cc -) - -# @//pkg:protoc -set(libprotoc_hdrs - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/code_generator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/command_line_interface.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/enum.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/extension.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/generators.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/file.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/generator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/helpers.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/message.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/message_layout_helper.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/names.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/options.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/padding_optimizer.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/parse_function_generator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/service.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/tracker.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_doc_comment.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_enum.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_enum_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_field_base.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_generator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_helpers.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_map_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_message.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_message_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_options.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_primitive_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_reflection_class.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_source_generator_base.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_wrapper_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/names.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/context.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/doc_comment.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/enum.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/enum_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/enum_field_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/enum_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/extension.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/extension_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/file.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/generator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/generator_factory.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/helpers.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/kotlin_generator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/map_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/map_field_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_builder.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_builder_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_field_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_serialization.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/name_resolver.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/names.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/options.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/primitive_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/primitive_field_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/service.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/shared_code_generator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/string_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/string_field_lite.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/enum.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/enum_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/extension.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/file.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/generator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/helpers.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/import_writer.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/line_consumer.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/map_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/message.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/message_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/names.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/nsobject_methods.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/oneof.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/options.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/primitive_field.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/text_format_decode_data.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/php/names.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/php/php_generator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.pb.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/python/generator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/python/helpers.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/python/pyi_generator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/ruby/ruby_generator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/scc.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/subprocess.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/zip_writer.h -) - -# @//src/google/protobuf:well_known_type_protos -set(wkt_protos_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/any.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/api.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/duration.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/empty.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/field_mask.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/source_context.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/struct.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/timestamp.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/type.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/wrappers.proto -) - -# @//src/google/protobuf:descriptor_proto -set(descriptor_proto_proto_srcs - ${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.proto -) - -# @//src/google/protobuf:descriptor_proto -set(descriptor_proto_srcs - ${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.proto.pb.cc -) - -# @//src/google/protobuf:descriptor_proto -set(descriptor_proto_hdrs - ${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.proto.pb.h -) - -# @//src/google/protobuf:descriptor_proto -set(descriptor_proto_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor_proto-descriptor-set.proto.bin -) - -# @//src/google/protobuf/compiler:plugin_proto -set(plugin_proto_proto_srcs - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.proto -) - -# @//src/google/protobuf/compiler:plugin_proto -set(plugin_proto_srcs - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.proto.pb.cc -) - -# @//src/google/protobuf/compiler:plugin_proto -set(plugin_proto_hdrs - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.proto.pb.h -) - -# @//src/google/protobuf/compiler:plugin_proto -set(plugin_proto_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin_proto-descriptor-set.proto.bin -) - -# @//pkg:common_test -set(common_test_srcs - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/mock_code_generator.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/testing/file.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/testing/googletest.cc -) - -# @//pkg:common_test -set(common_test_hdrs - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/mock_code_generator.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/testing/file.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/testing/googletest.h -) - -# @//pkg:lite_test_util -set(lite_test_util_srcs - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_test_util.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_lite_test_util.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/test_util_lite.cc -) - -# @//pkg:lite_test_util -set(lite_test_util_hdrs - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_test_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_lite_test_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_test_util_impl.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/proto3_lite_unittest.inc - ${protobuf_SOURCE_DIR}/src/google/protobuf/test_util.inc - ${protobuf_SOURCE_DIR}/src/google/protobuf/test_util2.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/test_util_lite.h -) - -# @//pkg:test_util -set(test_util_srcs - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/annotation_test_util.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_tester.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/test_util.cc -) - -# @//pkg:test_util -set(test_util_hdrs - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/annotation_test_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/unittest.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/unittest.inc - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_test.inc - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_test_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_test_util.inc - ${protobuf_SOURCE_DIR}/src/google/protobuf/message_unittest.inc - ${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_tester.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/test_util.h - ${protobuf_SOURCE_DIR}/src/google/protobuf/test_util.inc - ${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format_unittest.inc -) - -# @//src/google/protobuf:full_test_srcs -set(protobuf_test_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/any_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_align_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arena_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arenastring_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/arenaz_sampler_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor_database_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/drop_unknown_fields_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/dynamic_message_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_reflection_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_lite_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/inlined_string_field_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_field_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/message_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/no_field_presence_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/preserve_unknown_enum_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/proto3_arena_lite_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/proto3_arena_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/proto3_lite_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_ops_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_field_reflection_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_field_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/text_format_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/unknown_field_set_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/well_known_types_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format_unittest.cc -) - -# @//src/google/protobuf:test_proto_srcs -set(protobuf_test_protos_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/any_test.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_proto2_unittest.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_unittest.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_arena.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_custom_options.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_drop_unknown_fields.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_embed_optimize_for.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_empty.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_enormous_descriptor.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_import.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_import_public.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_lazy_dependencies.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_lazy_dependencies_custom_option.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_lazy_dependencies_enum.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_lite_imports_nonlite.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_mset.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_mset_wire_format.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_no_field_presence.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_no_generic_services.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_optimize_for.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_preserve_unknown_enum.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_preserve_unknown_enum2.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_proto3.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_proto3_arena.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_proto3_arena_lite.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_proto3_lite.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_proto3_optional.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_well_known_types.proto -) - -# @//src/google/protobuf:lite_test_srcs -set(protobuf_lite_test_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/lite_arena_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/lite_unittest.cc -) - -# @//src/google/protobuf:lite_test_proto_srcs -set(protobuf_lite_test_protos_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/map_lite_unittest.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_import_lite.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_import_public_lite.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/unittest_lite.proto -) - -# @//src/google/protobuf/compiler:test_srcs -set(compiler_test_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/command_line_interface_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/bootstrap_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/message_size_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/metadata_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/move_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/plugin_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_bootstrap_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_generator_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/importer_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/doc_comment_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_serialization_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/plugin_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/line_consumer_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/names_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/text_format_decode_data_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/parser_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/python/plugin_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/ruby/ruby_generator_unittest.cc -) - -# @//src/google/protobuf/compiler:test_proto_srcs -set(compiler_test_protos_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/test_bad_identifiers.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/test_large_enum_value.proto -) - -# @//src/google/protobuf/compiler:test_plugin_srcs -set(test_plugin_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/test_plugin.cc -) - -# @//src/google/protobuf/io:test_srcs -set(io_test_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/coded_stream_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/io_win32_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/printer_death_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/printer_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/tokenizer_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_sink_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_unittest.cc -) - -# @//src/google/protobuf/util:test_srcs -set(util_test_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/delimited_message_util_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/field_comparator_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/field_mask_util_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/message_differencer_unittest.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/time_util_test.cc - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/type_resolver_util_test.cc -) - -# @//src/google/protobuf/util:test_proto_srcs -set(util_test_protos_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/json_format.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/json_format_proto3.proto - ${protobuf_SOURCE_DIR}/src/google/protobuf/util/message_differencer_unittest.proto -) - -# @//src/google/protobuf/stubs:test_srcs -set(stubs_test_files - ${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/common_unittest.cc -)