Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Unified Diff: net/BUILD.gn

Issue 2329973003: Add net::BrotliSourceStream (Closed)
Patch Set: Sync-ed to 92104a0503b2862f54d60473b59dd1ae145eb22b Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index 47058d3fb825efd1405af30b3a08ea4a6f9bcb27..5ce040a820aeb42c4a8b8de9cb6229449404b5d3 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -390,9 +390,11 @@ component("net") {
# Brotli support.
if (!disable_brotli_filter) {
sources += [ "filter/brotli_filter.cc" ]
+ sources += [ "filter/brotli_source_stream.cc" ]
deps += [ "//third_party/brotli" ]
} else {
sources += [ "filter/brotli_filter_disabled.cc" ]
+ sources += [ "filter/brotli_source_stream_disabled.cc" ]
}
}
}
@@ -1579,6 +1581,7 @@ test("net_unittests") {
# Also, exclude the test from iOS for now (needs to read input data files).
if (disable_brotli_filter || is_ios) {
sources -= [ "filter/brotli_filter_unittest.cc" ]
+ sources -= [ "filter/brotli_source_stream_unittest.cc" ]
}
if (is_android) {
« no previous file with comments | « no previous file | net/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698