Add update instructions
1 file changed
tree: b9033d8c526b3bf9a880b24a200215fe63d4e41b
  1. base/
  2. build/
  3. polyfills/
  4. test/
  5. url/
  6. AUTHORS
  7. copy.bara.sky
  8. LICENSE
  9. README.md
  10. WORKSPACE
README.md

googleurl

This is a copy of Chrome's URL parsing library, adapted to work with Bazel. It is meant to be used by QUICHE, but can be also used by other projects that use Bazel.

In order to be used successfully, -std=c++14 and -fno-strict-aliasing compile flags are required.

For questions, contact proto-quic@chromium.org.

Update Instructions

In order to update this copy to the latest version of googleurl in Chromium, run the following commands in the root of the checkout:

  1. copybara copy.bara.sky import <path-to-chrome>/src --folder-dir .
  2. bazel test --cxxopt="-std=c++14" //...
  3. Fix all of the compilation errors, potentially modifying the BUILD files and the polyfill headers in polyfill/ as appropriate.
  4. Check the new version into Git.