| Index: net/BUILD.gn
|
| diff --git a/net/BUILD.gn b/net/BUILD.gn
|
| index 7dafe36425f58ade4fcf70b34c3c72fad38cb062..0bddcf79dda7a405528471a3dc30d0cf5f45013c 100644
|
| --- a/net/BUILD.gn
|
| +++ b/net/BUILD.gn
|
| @@ -406,10 +406,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" ]
|
| }
|
| }
|
| }
|
| @@ -1052,8 +1052,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 = [
|
| @@ -1525,7 +1523,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",
|
|
|
| @@ -1584,7 +1581,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) {
|
|
|