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

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: rebased Created 4 years, 4 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 fe3c88856ec5e905906f4ab09b72ba611435afaf..2c7c48bbcc5e47035b2e0b0953cbe39148e92e94 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -403,10 +403,10 @@ 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" ]
}
}
}
@@ -1041,8 +1041,6 @@ if (is_linux || is_mac) {
executable("content_decoder_tool") {
testonly = true
sources = [
- "filter/mock_filter_context.cc",
- "filter/mock_filter_context.h",
"tools/content_decoder_tool/content_decoder_tool.cc",
]
deps = [
@@ -1516,7 +1514,6 @@ test("net_unittests") {
"disk_cache/blockfile/block_files_unittest.cc",
# Need to read input data files.
- "filter/gzip_filter_unittest.cc",
"socket/ssl_server_socket_unittest.cc",
"spdy/fuzzing/hpack_fuzz_util_test.cc",
@@ -1575,7 +1572,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_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