commit | 9fa1882a31bb16d8a4ca01dc4a13cfb4bd491e9d | [log] [tgz] |
---|---|---|
author | Victor Vasiliev <vasilvv@google.com> | Wed Mar 30 16:54:54 2022 -0400 |
committer | Victor Vasiliev <vasilvv@google.com> | Wed Mar 30 16:54:54 2022 -0400 |
tree | 403ca077a98eec11b6e04d3b3e5699beb2ce84f9 | |
parent | f3aa86c047d0b2fbe61e9dfed58473297a10a938 [diff] |
Provide a no-ICU build of googleurl ICU is used by googleurl to normalize IDNA inside hostnames. However, using ICU comes with costs (mostly binary size), meaning that some embedders might want to avoid using it (Chrome itself does not use it on iOS, for instance). Provide such option in quiche googleurl fork. Change-Id: I3ef56cefa85aacd04e6c019257221edeb076d58c
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.
In order to update this copy to the latest version of googleurl in Chromium, run the following commands in the root of the checkout:
copybara copy.bara.sky import <path-to-chrome>/src --folder-dir .
bazel test --cxxopt="-std=c++14" //...
(C++14 is replacible with later C++ versions)polyfill/
as appropriate.