Name Date Size #Lines LOC

..--

benchmarks/H25-Apr-2025-12,95311,622

build_defs/H25-Apr-2025-285243

cmake/H25-Apr-2025-2,0191,730

conformance/H25-Apr-2025-15,94012,196

csharp/H25-Apr-2025-159,044129,801

docs/H25-Apr-2025-1,9161,586

editors/H25-Apr-2025-331183

examples/H25-Apr-2025-1,3661,051

java/H25-Apr-2025-128,88293,256

kokoro/H25-Apr-2025-5,1513,248

m4/H25-Apr-2025-1,9311,594

objectivec/H25-Apr-2025-88,27968,016

patches/H25-Apr-2025-671616

php/H25-Apr-2025-58,60039,457

pkg/H25-Apr-2025-1,098957

protoc-artifacts/H25-Apr-2025-793640

python/H25-Apr-2025-51,61638,374

ruby/H25-Apr-2025-38,03428,836

src/H25-Apr-2025-298,980221,452

third_party/H25-Apr-2025-565402

toolchain/H25-Apr-2025-407376

util/python/H25-Apr-2025-2320

.bazelignoreH A D25-Apr-202599 54

.readthedocs.ymlH A D25-Apr-2025518 2311

Android.bpH A D25-Apr-202548.7 KiB1,3301,315

BUILD.bazelH A D25-Apr-202546.3 KiB1,3691,271

BUILD.gnH A D25-Apr-202514.9 KiB415347

CHANGES.txtH A D25-Apr-2025156.4 KiB3,4912,968

CMakeLists.txtH A D25-Apr-202513.1 KiB352315

CONTRIBUTING.mdH A D25-Apr-20256.7 KiB121102

CONTRIBUTORS.txtH A D25-Apr-20254 KiB10896

DEPSH A D25-Apr-202584 76

DIR_METADATAH A D25-Apr-202590 76

LICENSEH A D25-Apr-20251.7 KiB3328

METADATAH A D25-Apr-2025305 1312

MODULE_LICENSE_BSDHD25-Apr-20250

Makefile.amH A D25-Apr-202595.2 KiB1,2931,250

Protobuf-C++.podspecH A D25-Apr-20251.5 KiB4234

Protobuf.podspecH A D25-Apr-20252.6 KiB5145

README.chromiumH A D25-Apr-202510 KiB233169

README.mdH A D25-Apr-20253.8 KiB8560

SECURITY.mdH A D25-Apr-2025176 53

WORKSPACEH A D25-Apr-20252.1 KiB7255

appveyor.batH A D25-Apr-20251.4 KiB4940

appveyor.ymlH A D25-Apr-20251.1 KiB4833

autogen.shH A D25-Apr-20251.2 KiB4524

build_files_updated_unittest.shH A D25-Apr-20251.7 KiB6339

configure.acH A D25-Apr-20257.9 KiB248213

fix_permissions.shH A D25-Apr-2025147 97

gen_chromium_file_lists.pyH A D25-Apr-20255.8 KiB157116

gen_extra_chromium_files.pyH A D25-Apr-20251.3 KiB4527

generate_changelog.pyH A D25-Apr-20251.4 KiB6252

generate_descriptor_proto.shH A D25-Apr-20253.1 KiB11689

global.jsonH A D25-Apr-202581 76

maven_install.jsonH A D25-Apr-202517.5 KiB288287

post_process_dist.shH A D25-Apr-20251.8 KiB6532

proto_library.gniH A D25-Apr-202522.4 KiB705635

proto_sources.gniH A D25-Apr-202521 KiB453440

protobuf-lite.pc.inH A D25-Apr-2025249 1210

protobuf.bzlH A D25-Apr-202519.3 KiB593513

protobuf.pc.inH A D25-Apr-2025271 1411

protobuf_deps.bzlH A D25-Apr-20255 KiB123107

protobuf_release.bzlH A D25-Apr-20251.4 KiB5142

protobuf_version.bzlH A D25-Apr-2025128 54

tests.shH A D25-Apr-202515.6 KiB612453

update_compatibility_version.pyH A D25-Apr-20251.4 KiB5741

update_file_lists.shH A D25-Apr-20256.4 KiB196163

update_version.pyH A D25-Apr-202512.9 KiB406336

version.jsonH A D25-Apr-2025404 1717

README.chromium

1Name: Protocol Buffers
2Short Name: protobuf
3URL: https://github.com/google/protobuf
4License: BSD
5License File: LICENSE
6Version: 21.12
7CPEPrefix: cpe:/a:google:protobuf:21.12
8Revision: f0dc78d7e6e331b8c6bb2d5283e06aa26883ca7c
9Security Critical: yes
10Shipped: yes
11
12Steps used to create the current version (or roll a newer one):
130. Nuke third_party/protobuf from orbit (rm -rf `third_party/protobuf`). Note
14   that this removes this README.chromium so you may want it open in code search
15   or remember the steps up until 2. where you get it back.
16
171. Pull the release from https://github.com/google/protobuf/releases (Source
18   code .tar.gz). Extract to `third_party/protobuf` (without version suffix),
19   i.e. you may `$ mv protobuf-21.12 third_party/protobuf` or similar.
20
212. Add back chromium's non-upstream files (from this directory):
22
23   $ git checkout main BUILD.gn DEPS DIR_METADATA OWNERS README.chromium \
24     gen_chromium_file_lists.py gen_extra_chromium_files.py proto_library.gni \
25     patches/
26
27   Note: Ideally we wouldn't do this but instead have a
28   `third_party/protobuf/src/` subdirectory where upstream code goes directly
29   into. That will require updating things outside this repository (at least
30   `third_party/webrtc`) to agree on where the source code lives. I wouldn't be
31   surprised if that also required Google-internal uses of protobuf from webrtc
32   to also agree on `third_party/protobuf/src` so maybe this'll never happen?
33   Here be dragons. Probably.
34
35   Probably worth making a local `git commit` here before applying patches (next
36   step).
37
383. Apply patches in patches/ (see the description below):
39
40   $ for patch in patches/*; do patch -s -p1 < $patch; done
41
42   When a patch fails, it's probably best to check out previous state (from 3)
43   for any changes not inside the patches/ folder, fix the patch and then try to
44   reapply everything. It's not a good idea to fix the error, forget to generate
45   a patch and leave patches/ in a bad state.
46
47   If a patch no longer applies it may not be needed, if so remove it and its
48   description in this README.chromium file. Similarly try to eventually
49   upstream any patches out of band from unblocking the roll so we can
50   eventually remove it here as well.
51
52   Probably worth committing locally here too.
53
544. Generate `proto_sources.gni` using the script `./gen_chromium_file_lists.py`.
55
56   Add and commit `proto_sources.gni`,
57
585. Generate descriptor_pb2.py using the script "gen_extra_chromium_files.py" in
59   the same directory as this file.
60
61   $ ./gen_extra_chromium_files.py -C ../../out/Default
62
63   Add and commit `python/google/protobuf/descriptor_pb2.py` and
64   `python/google/protobuf/compiler/plugin_pb2.py` as well.
65
666. Update Version, CPEPrefix and Revision in this file.
67
68Notes (hints) for the next roll(er):
69
70* This is probably harder to roll than most things you've rolled in the past.
71  Good luck! Also please reach out for help proactively. The current roll as of
72  writing this required help from multiple very-senior people to even figure out
73  what was broken in the first place. `protobuf` rolling is not in a good place.
74* Update README.chromium as you go so you don't forget (after step 2. above, so
75  you don't nuke those changes).
76* Rolling one version of protobuf likely introduces a large amount of changes.
77  We should possibly figure out if it's reasonable to stay close to tip of tree
78  and roll frequently rather than use released versions. Sharp corners here
79  likely include that the version is encoded in protobuf output and I (pbos@)
80  don't know if that version tag changes immediately on format incompatibilities
81  or get bumped every time something format incompatible is introduced.
82* After v3.20 protobuf-javascript/ split out from upstream protobuf/. You may
83  need to be aware of both repositories. Also upstream protobuf/ seems to move
84  faster / out of sync with protobuf-javascript/. Hopefully that doesn't cause
85  format incompatibilities in the future (protobuf/ supports something we need
86  that protobuf-javascript/ doesn't).
87* Any argument changes to `protoc_wrapper` in `third_party/protobuf/BUILD.gn`
88  may require updating `build/config/siso/protoc_wrapper.star` as well.
89* We've seen instances where instead of rolling protobuf a local copy of a new
90  built-in type has been checked in. When that happens you may see ODR
91  violations as your built-in type is defined in multiple files. If that happens
92  you may want to move the copy that should never have been checked in into its
93  own namespace, complete the roll and then cleanup the local copy.
94* third_party/mediapipe checks in a weird modified copy of
95  `third_party/protobuf/src/google/protobuf/any.pb.cc` called `any_lite.pb.cc`.
96  This precompiled protobuf will get invalidated on any protobuf version bumps
97  and you'll need to either painstakingly generated a new one (do a diff of the
98  checked-in `any_lite.pb.{cc,h}` and current `any.pb.{cc,h}` to aid you in the
99  process.
100  WARNING: This item is a lot larger than it looks. We should really
101  either fix mediapipe upstream to build with `MEDIAPIPE_PROTO_LITE` and
102  `MEDIAPIPE_PROTO_THIRD_PARTY` both set, but it looks like that configuration
103  has bit rotted.
104
105Note about vpython:
106
107Some Python scripts end up mixing protoc output from this copy of protobuf with
108the google.protobuf module from vpython's protobuf. If Python scripts break due
109to the vpython copy of protobuf, you may need to update the version in
110//.vpython3. See https://crbug.com/1320047.
111
112Description of the patches:
113
114- 0004-fix-shared-library-exports.patch
115
116  This patch allows exporting protobuf symbols in Linux .so libraries, so
117  that protobuf can be built as a component (see http://crrev.com/179806).
118
119- 0008-uninline_get_empty_string.patch
120- 0010-uninline-generated-code.patch
121
122  These patches uninline some functions, resulting in a significant reduction
123  (somewhere between 500 KB and 1 MB) of binary size.
124
125- 0021-Fix-protobuf-s-library-.gitinore-file.patch
126
127  Un-ignores python/google/protobuf/descriptor_pb2.py and
128  python/google/protobuf/compiler/plugin_pb2.py
129
130- 0022-Allow-deprecated-fields.patch
131
132  Allows deprecated fields to be used without extra C++ compiler warnings.
133
134- 0026-remove-sprintf.patch
135
136  Imports
137  https://github.com/protocolbuffers/protobuf/commit/c0fc2e881bc36aafb0bf539bf41889611370f60c
138  to remove use of sprintf.
139
140- 0027-no-noreturn.patch
141
142  Removes an instance of [[noreturn]]. The attribute is correct, but the way
143  protobuf's GOOGLE_LOG(FATAL) is defined, the compiler can't see this and it
144  trips -Winvalid-noreturn. See https://github.com/protocolbuffers/protobuf/issues/9817
145
146- 0029-make-initializers-optimizable.patch
147
148  Makes the InitProtobufDefaults() static initializer optimizable by Clang when
149  built with libc++. It patches out the OnShutdownDestroyString call, which we
150  do not need, and removes the thread-safe initialization. Thread safety is only
151  needed if a static initializer spawns a thread which then calls
152  InitProtobufDefaults() without synchronizing with the start of main().
153  (Anything which happens after main() starts can rely on the initializer
154  running.)
155
156- 0030-workaround-window-constinit.patch
157
158  Disables PROTOBUF_CONSTINIT in generated code in Windows shared library
159  builds. Protobuf's default instances take pointers to a dllimport variable,
160  fixed_address_empty_string. This is not constinit on Windows. This is a bug in
161  protobuf as the default instance was intended to be constant-initialized. But
162  the components build in Chromium is a developer configuration, so we tolerate
163  an initializer as long as the build works, until protobuf has a proper fix.
164
165  See https://github.com/protocolbuffers/protobuf/issues/10159.
166
167- 0031-workaround-cfi-unrelated-cast.patch
168
169  A workaround for Clang's Control Flow Integrity check for casting pointers to
170  memory that his not yet initialized to be of that type for empty arrays, does
171  not work, and still fails. This patch removes the workaround and instead
172  disables cfi-unrelated-cast for the affected methods and simplifies them.
173
174  See https://github.com/protocolbuffers/protobuf/issues/10186.
175  See https://bugs.chromium.org/p/chromium/issues/detail?id=1294200#c26.
176
177- 0032-cxx20.patch
178
179  Fixes necessary to build in --std=c++20 mode.
180
181  Imports https://critique.corp.google.com/cl/451177197 (a portion of
182  https://github.com/protocolbuffers/protobuf/commit/6dd8af4ecfa7987bddb309862932886b84f1e4ef
183  ).
184
185- 0033-no-enum-conversion-warn.patch
186
187  Avoid hitting the clang error -Wenum-constexpr-conversion by specifying width
188  of the enum.
189
190  Imports https://critique.corp.google.com/cl/466986872.
191
192- 0034-change-macro-to-avoid-pedantic-warning.patch
193
194  Avoid hitting -Wextra-semi.
195
196  Imports (rebased):
197  https://github.com/protocolbuffers/protobuf/commit/def602dd07b7eae1cac6823705975317b5607fc3
198
199- 0035-fix-shared-library-constants
200
201  Fixes for component build when building with MediaPipe. AnyMetadata::PackFrom
202  is called which require string constants to be exported.
203
204- 0036-fix-undefined-memcpy-call.patch
205
206  Fixes an undefined call to memcpy which may be passed NULL, 0. NULL, 0 is
207  forbidden in C, due to a mistake in the C language specification. This
208  partially integrates
209  https://github.com/protocolbuffers/protobuf/commit/b2e1d7d8a1b1959c782595cd815c22fb690ac8e2
210  from upstream and may be removed when protobuf is updated past that commit.
211
212- 0037-fix-wextra-semi.patch
213
214  Removes an extra semicolon, fixed in upstream
215  https://github.com/protocolbuffers/protobuf/commit/3e6f8ee152db71ae49cc95649feab50d2faacdfa
216
217- 0038-silence-implicit-precision-loss.patch
218
219  Silences -Wshorten-64-to-32 for now. Fixed in upstream
220  https://github.com/protocolbuffers/protobuf/commit/d85c9944c55fb38f4eae149979a0f680ea125ecb
221
222- 0039-generate-mediapipe-anylite.patch
223
224  Workaround to allow generating protobuf code compatible with
225  third_party/mediapipe. This replaces checked-in precompiled .pb.cc files. See
226  https://crbug.com/332939935, which when/if resolved should make this patch
227  obsolete.
228
229- 0040-fix-ndk-major.patch
230
231  Fix Android compile error that affects webrtc. Fixed in upstream
232  https://github.com/protocolbuffers/protobuf/commit/9471a882256eaf01027524e8b6c15cbb5e42bef6
233

README.md

1Protocol Buffers - Google's data interchange format
2===================================================
3
4Copyright 2008 Google Inc.
5
6https://developers.google.com/protocol-buffers/
7
8Overview
9--------
10
11Protocol Buffers (a.k.a., protobuf) are Google's language-neutral,
12platform-neutral, extensible mechanism for serializing structured data. You
13can find [protobuf's documentation on the Google Developers site](https://developers.google.com/protocol-buffers/).
14
15This README file contains protobuf installation instructions. To install
16protobuf, you need to install the protocol compiler (used to compile .proto
17files) and the protobuf runtime for your chosen programming language.
18
19Protocol Compiler Installation
20------------------------------
21
22The protocol compiler is written in C++. If you are using C++, please follow
23the [C++ Installation Instructions](src/README.md) to install protoc along
24with the C++ runtime.
25
26For non-C++ users, the simplest way to install the protocol compiler is to
27download a pre-built binary from our release page:
28
29  [https://github.com/protocolbuffers/protobuf/releases](https://github.com/protocolbuffers/protobuf/releases)
30
31In the downloads section of each release, you can find pre-built binaries in
32zip packages: protoc-$VERSION-$PLATFORM.zip. It contains the protoc binary
33as well as a set of standard .proto files distributed along with protobuf.
34
35If you are looking for an old version that is not available in the release
36page, check out the maven repo here:
37
38  [https://repo1.maven.org/maven2/com/google/protobuf/protoc/](https://repo1.maven.org/maven2/com/google/protobuf/protoc/)
39
40These pre-built binaries are only provided for released versions. If you want
41to use the github main version at HEAD, or you need to modify protobuf code,
42or you are using C++, it's recommended to build your own protoc binary from
43source.
44
45If you would like to build protoc binary from source, see the [C++ Installation
46Instructions](src/README.md).
47
48Protobuf Runtime Installation
49-----------------------------
50
51Protobuf supports several different programming languages. For each programming
52language, you can find instructions in the corresponding source directory about
53how to install protobuf runtime for that specific language:
54
55| Language                             | Source                                                      |
56|--------------------------------------|-------------------------------------------------------------|
57| C++ (include C++ runtime and protoc) | [src](src)                                                  |
58| Java                                 | [java](java)                                                |
59| Python                               | [python](python)                                            |
60| Objective-C                          | [objectivec](objectivec)                                    |
61| C#                                   | [csharp](csharp)                                            |
62| Ruby                                 | [ruby](ruby)                                                |
63| Go                                   | [protocolbuffers/protobuf-go](https://github.com/protocolbuffers/protobuf-go)|
64| PHP                                  | [php](php)                                                  |
65| Dart                                 | [dart-lang/protobuf](https://github.com/dart-lang/protobuf) |
66
67Quick Start
68-----------
69
70The best way to learn how to use protobuf is to follow the tutorials in our
71developer guide:
72
73https://developers.google.com/protocol-buffers/docs/tutorials
74
75If you want to learn from code examples, take a look at the examples in the
76[examples](examples) directory.
77
78Documentation
79-------------
80
81The complete documentation for Protocol Buffers is available via the
82web at:
83
84https://developers.google.com/protocol-buffers/
85