Add QUICHE_EXPORT macros in third_party/http2/adapter.

Also to FrameTypeToString() in third_party/spdy/core/spdy_protocol.h, which is
required for test_utils.cc to link in Chromium.

QUICHE_EXPORT_PRIVATE is used for definitions that are compiled in production
code but used from test code as well (otherwise linking the net_unittest
Chromium target fails).

QUICHE_NO_EXPORT is used in compilation units that are part of the net_unittest
build target, because these are not linked into any other target.  This macro is
defined empty both internally and in Chromium and is meant to supress the
presubmit error.

Also clean up dependencies using build_cleaner.

PiperOrigin-RevId: 386958565
20 files changed
tree: b9bc02f5460065848d7bdca7fa170ba875228c73
  1. common/
  2. epoll_server/
  3. http2/
  4. quic/
  5. spdy/
  6. CONTRIBUTING.md
  7. LICENSE
  8. README.md
README.md

QUICHE

QUICHE stands for QUIC, Http/2, Etc. It is Google‘s production-ready implementation of QUIC, HTTP/2, HTTP/3, and related protocols and tools. It powers Google’s servers, Chromium, Envoy, and other projects. It is actively developed and maintained.

The canonical open-source QUICHE repository is at https://quiche.googlesource.com/quiche.

To embed QUICHE in your project, platform APIs need to be implemented and build files need to be created. Note that it is on the QUICHE team's roadmap to include default implementation for all platform APIs and to open-source build files. In the meanwhile, take a look at open source embedders like Chromium and Envoy to get started:

QUICHE is only supported on little-endian platforms.