• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

abseil-cpp/25-Apr-2025-273,928187,254

address_sorting/25-Apr-2025-885580

android/25-Apr-2025-6754

cares/25-Apr-2025-108,44677,617

envoy-api/25-Apr-2025-2418

googleapis/25-Apr-2025-11484

opencensus-proto/25-Apr-2025-16,80913,709

py/25-Apr-2025-449402

rake-compiler-dock/25-Apr-2025-9777

re2/25-Apr-2025-47,26436,826

toolchains/25-Apr-2025-9,4539,111

upb/25-Apr-2025-83,82161,371

utf8_range/25-Apr-2025-5,0063,470

xds/25-Apr-2025-20,20015,682

xxhash/25-Apr-2025-5,6212,839

ABSEIL_MANUAL.mdD25-Apr-20251.2 KiB3122

BUILDD25-Apr-2025350 1817

README.mdD25-Apr-20259.1 KiB164118

constantly.BUILDD25-Apr-2025134 87

cython.BUILDD25-Apr-2025667 3026

enum34.BUILDD25-Apr-2025132 76

futures.BUILDD25-Apr-2025141 76

incremental.BUILDD25-Apr-2025178 1110

libprotobuf_mutator.BUILDD25-Apr-20251,011 3128

libuv.BUILDD25-Apr-20259.1 KiB392358

protobuf.patchD25-Apr-2025487 1513

protobuf2.patchD25-Apr-20251.1 KiB3228

protoc-gen-validate.patchD25-Apr-2025494 1514

rules_python.patchD25-Apr-20252.8 KiB7768

six.BUILDD25-Apr-2025254 1512

twisted.BUILDD25-Apr-2025375 1615

yaml.BUILDD25-Apr-2025164 1110

zlib.BUILDD25-Apr-2025635 3736

zope_interface.BUILDD25-Apr-2025241 1413

README.md

1# Third-party libraries
2
3gRPC depends on several third-party libraries, their source code is available
4(usually as a git submodule) in this directory.
5
6## Guidelines on updating submodules
7
8- IMPORTANT: whenever possible, try to only update to a stable release of a library (= not to master / random commit). Depending on unreleased revisions
9  makes gRPC installation harder for users, as it forces them to always build the dependency from source and prevents them from using more
10  convenient installation channels (linux packages, package managers etc.)
11
12- bazel BUILD uses a different dependency model - whenever updating a submodule, also update the revision in `grpc_deps.bzl` so that bazel and
13  non-bazel builds stay in sync (this is actually enforced by a sanity check in some cases)
14
15## Considerations when adding a new third-party dependency
16
17- gRPC C++ needs to stay buildable/installable even if the submodules are not present (e.g. the tar.gz archive with gRPC doesn't contain the submodules),
18  assuming that the dependencies are already installed. This is a requirement for being able to provide a reasonable install process (e.g. using cmake)
19  and to support package managers for gRPC C++.
20
21- Adding a new dependency is a lot of work (both for us and for the users).
22  We currently support multiple build systems (BAZEL, cmake, make, ...) so adding a new dependency usually requires updates in multiple build systems
23  (often not trivial). The installation process also needs to continue to work (we do have distrib tests to test many of the possible installation scenarios,
24  but they are not perfect). Adding a new dependency also usually affects the installation instructions that need to be updated.
25  Also keep in mind that adding a new dependency can be quite disruptive
26  for the users and community - it means that all users will need to update their projects accordingly (for C++ projects often non-trivial) and
27  the community-provided C++ packages (e.g. vcpkg) will need to be updated as well.
28
29## Checklist for adding a new third-party dependency
30
31**READ THIS BEFORE YOU ADD A NEW DEPENDENCY**
32
33- [ ] Make sure you understand the hidden costs of adding a dependency (see section above) and that you understand the     complexities of updating the build files. Maintenance of the build files isn't for free, so expect to be involved in maintenance tasks, cleanup and support (e.g resolving user bugs) of the build files in the future.
34
35- [ ] Once your change is ready, start an [adhoc run of artifact - packages - distribtests flow](https://fusion.corp.google.com/projectanalysis/summary/KOKORO/prod%3Agrpc%2Fcore%2Fexperimental%2Fgrpc_build_artifacts_multiplatform) and make sure everything passes (for technical reasons, not all the distribtests can run on each PR automatically).
36
37- [ ] Check the impact of the new dependency on the size of our distribution packages (compare BEFORE and AFTER) and post the comparison on your PR (it should not be approved without checking the impact sizes of packages first). The package sizes AFTER can be obtained from the adhoc package build from bullet point above.
38
39## Instructions for updating dependencies
40
41Usually the process is
42
431. update the submodule to selected commit (see guidance above)
442. update the dependency in `grpc_deps.bzl` to the same commit
453. update `tools/run_tests/sanity/check_submodules.sh` to make the sanity test pass
464. (when needed) run `tools/buildgen/generate_projects.sh` to regenerate the generated files
475. populate the bazel download mirror by running `bazel/update_mirror.sh`
48
49Updating some dependencies requires extra care.
50
51### Updating third_party/abseil-cpp
52
53- Two additional steps should be done before running `generate_projects.sh` above.
54  - Running `src/abseil-cpp/preprocessed_builds.yaml.gen.py`.
55  - Updating `abseil_version =` scripts in `templates/gRPC-C++.podspec.template` and
56    `templates/gRPC-Core.podspec.template`.
57- You can see an example of previous [upgrade](https://github.com/grpc/grpc/pull/24270).
58
59### Updating third_party/boringssl-with-bazel
60
61NOTE: updating the boringssl dependency is now part of the internal grpc release tooling (see [go/grpc-release](http://go/grpc-release)).
62Prefer using the release tooling when possible. The instructions below are provided as a reference and aren't guaranteed to be up-to-date.
63
64- Update the `third_party/boringssl-with-bazel` submodule to the latest [`master-with-bazel`](https://github.com/google/boringssl/tree/master-with-bazel) branch
65```
66git submodule update --init      # just to start in a clean state
67cd third_party/boringssl-with-bazel
68git fetch origin   # fetch what's new in the boringssl repository
69git checkout origin/master-with-bazel  # checkout the current state of master-with-bazel branch in the boringssl repo
70# Note the latest commit SHA on master-with-bazel branch
71cd ../..   # go back to grpc repo root
72git status   #  will show that there are new commits in third_party/boringssl-with-bazel
73git add  third_party/boringssl-with-bazel     # we actually want to update the changes to the submodule
74git commit -m "update submodule boringssl-with-bazel with origin/master-with-bazel"   # commit
75```
76
77- Update boringssl dependency in `bazel/grpc_deps.bzl` to the same commit SHA as master-with-bazel branch
78    - Update `http_archive(name = "boringssl",` section by updating the sha in `strip_prefix` and `urls` fields.
79    - Also, set `sha256` field to "" as the existing value is not valid. This will be added later once we know what that value is.
80
81- Update `tools/run_tests/sanity/check_submodules.sh` with the same commit
82
83- Commit these changes `git commit -m "update boringssl dependency to master-with-bazel commit SHA"`
84
85- Run `tools/buildgen/generate_projects.sh` to regenerate the generated files
86    - Because `sha256` in `bazel/grpc_deps.bzl` was left empty, you will get a DEBUG msg like this one:
87      ```
88      Rule 'boringssl' indicated that a canonical reproducible form can be obtained by modifying arguments sha256 = "SHA value"
89      ```
90    - Commit the regenrated files `git commit -m "regenerate files"`
91    - Update `bazel/grpc_deps.bzl` with the SHA value shown in the above debug msg. Commit again `git commit -m "Updated sha256"`
92
93- Run `tools/distrib/generate_boringssl_prefix_header.sh`
94    - Commit again `git commit -m "generate boringssl prefix headers"`
95
96- Increment the boringssl podspec version number in
97  `templates/src/objective-c/BoringSSL-GRPC.podspec.template` and `templates/gRPC-Core.podspec.template`.
98  [example](https://github.com/grpc/grpc/pull/21527/commits/9d4411842f02f167209887f1f3d2b9ab5d14931a)
99    - Commit again `git commit -m "Increment podspec version"`
100
101- Run `tools/buildgen/generate_projects.sh` (yes, again)
102    - Commit again `git commit -m "Second regeneration"`
103
104- Create a PR with all the above commits.
105
106- Run `bazel/update_mirror.sh` to update GCS mirror.
107
108### Updating third_party/protobuf
109
110Updating the protobuf dependency is now part of the internal release process (see [go/grpc-release](http://go/grpc-release)).
111
112### Updating third_party/envoy-api
113
114Apart from the above steps, please run `tools/codegen/core/gen_upb_api.sh` to regenerate upb files.
115
116In addition, please perform the following two steps to generate the Python `xds-protos` package:
117
1181. Bump the version in the `tools/distrib/python/xds_protos/setup.py`;
1192. Run `tools/distrib/python/xds_protos/build_validate_upload.sh` to upload the built wheel.
120
121### Updating third_party/upb
122
123Since upb is vendored in the gRPC repo, you cannot use submodule to update it. Please follow the steps below;
124
1251. Update third_party/upb directory by running
126   - `export GRPC_ROOT=~/git/grpc`
127   - `wget https://github.com/protocolbuffers/upb/archive/refs/heads/main.zip`
128   - `rm -rf $GRPC_ROOT/third_party/upb`
129   - `unzip main.zip -d $GRPC_ROOT/third_party`
130   - `mv $GRPC_ROOT/third_party/upb-main $GRPC_ROOT/third_party/upb`
1312. Update the dependency in `grpc_deps.bzl` to the same commit
1323. Populate the bazel download mirror by running `bazel/update_mirror.sh`
1334. Inspect `src/upb/gen_build_yaml.py` and update it with added or removed upb files
134   - Running `cd third_party/upb; bazel query "deps(upb) union deps(json) union deps(textformat)"`
135     would give some idea on what needs to be included.
1365. Run `tools/buildgen/generate_projects.sh` to regenerate the generated files
1376. Run `tools/codegen/core/gen_upb_api.sh` to regenerate upb files.
138
139### Updating third_party/utf8_range
140
141```
142# set to wherever your grpc repo lives
143export GRPC_ROOT=~/git/grpc
144wget https://github.com/protocolbuffers/utf8_range/archive/refs/heads/main.zip
145rm -rf $GRPC_ROOT/third_party/utf8_range
146unzip main.zip -d $GRPC_ROOT/third_party
147mv $GRPC_ROOT/third_party/utf8_range-main $GRPC_ROOT/third_party/utf8_range
148```
149
150### Updating third_party/xxhash
151
152TODO(https://github.com/Cyan4973/xxHash/issues/548): revisit LICENSE
153instructions if upstream splits library and CLI.
154
155The upstream xxhash repository contains a bunch of files that we don't want, so
156we employ a rather manual update flow to pick up just the bits we care about:
157
158```
159git remote add xxhash https://github.com/Cyan4973/xxHash.git
160git fetch xxhash
161git show xxhash/dev:xxhash.h > third_party/xxhash/xxhash.h
162git show xxhash/dev:LICENSE | sed -nE '/^-+$/q;p' > third_party/xxhash/LICENSE
163```
164