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

Unified Diff: net/BUILD.gn

Issue 1662763002: [ON HOLD] Implement pull-based design for content decoding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 4 years, 8 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') | net/filter/block_buffer.h » ('J')
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 0e2823980b23256535a14fbc8588c173fa434f07..b21dbf1696753c4d80584c82432c455feb76ed9d 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -498,10 +498,10 @@ component("net") {
# Brotli support.
if (!disable_brotli_filter) {
- sources += [ "filter/brotli_filter.cc" ]
+ sources += [ "filter/brotli_stream_source.cc" ]
deps += [ "//third_party/brotli" ]
} else {
- sources += [ "filter/brotli_filter_disabled.cc" ]
+ sources += [ "filter/brotli_stream_source_disabled.cc" ]
}
}
}
@@ -1703,7 +1703,7 @@ test("net_unittests") {
# Exclude brotli test if the support for brotli is disabled.
# 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_stream_source_unittest.cc" ]
}
if (is_android) {
« no previous file with comments | « no previous file | net/DEPS » ('j') | net/filter/block_buffer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698