| Index: net/BUILD.gn | 
| diff --git a/net/BUILD.gn b/net/BUILD.gn | 
| index 2068aa333e698168d6eb48937ab4e0a6448cf0f7..af0b64fb275c41d84946a76f9919fa95f3458e42 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 = [ | 
| @@ -1608,7 +1606,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", | 
|  | 
| @@ -1665,7 +1662,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) { | 
|  |