Clone this repo:

Branches

  1. ef6a4f8 Update googleurl by Victor Vasiliev · 5 weeks ago master
  2. b814006 Update googleurl from upstream by Victor Vasiliev · 4 months ago
  3. c34a16f Update googleurl from upstream by Victor Vasiliev · 5 months ago
  4. fddbc18 Update googleurl to the latest Chromium version by Victor Vasiliev · 6 months ago
  5. d255b4a Update googleurl to the version from Sat Nov 5 08:06:16 2022 by Victor Vasiliev · 7 months ago

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, C++14 or later and -fno-strict-aliasing compile flag 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++17" //... (C++17 is replacible with later C++ versions)
  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.