Protocol Buffers - Google's data interchange format (grpc依赖) https://developers.google.com/protocol-buffers/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Sandy Zhang 6483c4755d Update protoc release to include editions language features protos for Java and C++ 8 months ago
..
test Shorten our license headers into an abbreviated form that references LICENSE instead of including it in full. 1 year ago
BUILD.bazel Update protoc release to include editions language features protos for Java and C++ 8 months ago
README.md Add source distribution packaging rules (#9835) 3 years ago
build_systems.bzl Update Bazel references to rules_pkg to the supported file locations. (#15780) 10 months ago
cc_dist_library.bzl Read crate mapping in protoc 11 months ago

README.md

Protobuf packaging

This directory contains Bazel rules for building packaging and distribution artifacts.

Everything in this directory should be considered internal and subject to change.

Protocol compiler binary packaging

The protocol compiler is used in binary form in various places. There are rules which package it, along with commonly used .proto files, for distribution.

Source distribution packaging

Protobuf releases include source distributions, sliced by target language (C++, Java, etc.). There are rules in this package to define those source archives. These depend upon pkg_files rules elsewhere in the repo to get the contents.

The source distribution files should include the outputs from autogen.sh, but this isn't something we can reliably do from Bazel. To produce fully functioning source distributions, run autogen.sh before building the archives (this populates the necessary files directly into the source tree).

C++ runtime binary distribution

The cc_dist_library rule creates composite libraries from several other cc_library targets. Bazel uses a "fine-grained" library model, where each cc_library produces its own library artifacts, without transitive dependencies. The cc_dist_library rule combines several other libraries together, creating a single library that may be suitable for distribution.