Clone this repo:

Branches

  1. 6486fcc [build] Make license rules conditional on is_fuchsia_tree by Anivia Li · 10 days ago main master
  2. 6cb190d [docs] Remove step 2 from README uprev instructions by Anivia Li · 10 days ago
  3. 22d85df [protobuf] Remove use_new_protobuf transition logic by Clayton Mccray · 10 days ago
  4. fdbfc81 [build] Remove deprecated //third_party/tink/* visibility by Anivia Li · 12 days ago
  5. bfab74b [build] Allow //third_party/tink-cc/* in visibility list by Anivia Li · 3 weeks ago

Protocol Buffers GN Build Support

This repository contains GN build system support for Protocol Buffers. It's in its own repository because it needs to be shared by Fuchsia and Cobalt.

This repo should be checked out such that:

  • It is in //build/secondary/third_party/protobuf.
  • Protobuf is in //third_party/protobuf/src.
  • //.gn contains secondary_source = "//build/secondary/"

See the GN documentation on secondary_source.

Updating Build Files

WARNING: DO NOT MODIFY THE BUILD.gn FILE DIRECTLY!

The BUILD.gn file in this directory is generated automatically. Any manual changes will be overwritten.

To make changes to the build configuration:

  1. Edit the BUILD.input.gn file to suit your needs, for example managing visibility, suppressing warnings, etc.
  2. Run the gen.py script located in this directory to regenerate the BUILD.gn file:
    ./gen.py [commit_hash]
    
    If no commit hash is specified, it defaults to HEAD of //third_party/protobuf/src.
  3. Commit both the updated BUILD.input.gn and the newly generated BUILD.gn file.

Failing to modify BUILD.input.gn will result in your changes being lost the next time the build file is regenerated.