| 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) {
|
|
|