tree: 900bd461ba411fff0f681ba59ed6550463f0070b [path history] [tgz]
  1. template/
  2. BUILD.gn
  3. README.md
build/secondary/third_party/grpc/README.md

Adapted from Chromium.

Steps to upgrade to a new version of GRPC, all relative to this directory:

  1. Update the template:
    curl -sfSL \
      https://chromium.googlesource.com/chromium/src/+/main/third_party/grpc/template/BUILD.chromium.gn.template?format=TEXT | \
      base64 --decode | sed -E "s/([\"'])src/\1./g" > template/BUILD.fuchsia.gn.template
    
  2. Apply Fuchsia-specific patch:
    patch -d $FUCHSIA_DIR -p1 --merge < template/fuchsia.patch
    
  3. Resolve conflicts.
  4. Commit the result.
  5. Regenerate Fuchsia-specific patch:
    1. Download the original template (see curl above).
    2. Generate the patch:
      git diff -R template/BUILD.fuchsia.gn.template > template/fuchsia.patch
      
    3. Restore the template:
      git checkout template/BUILD.fuchsia.gn.template
      
  6. Update $FUCHSIA_DIR/integration/fuchsia/third_party/flower to reference a new GRPC revision.
  7. Install prerequisites:
    sudo apt install python3-mako`
    
  8. Rebuild BUILD.gn:
    git -C $FUCHSIA_DIR/third_party/grpc submodule update --init
    cp template/BUILD.fuchsia.gn.template $FUCHSIA_DIR/third_party/grpc/templates
    (cd $FUCHSIA_DIR/third_party/grpc && tools/buildgen/generate_projects.sh)
    rm $FUCHSIA_DIR/third_party/grpc/templates/BUILD.fuchsia.gn.template
    mv $FUCHSIA_DIR/third_party/grpc/BUILD.fuchsia.gn BUILD.gn
    fx gn format --in-place BUILD.gn
    git -C $FUCHSIA_DIR/third_party/grpc submodule deinit --all