| Index: net/BUILD.gn
|
| diff --git a/net/BUILD.gn b/net/BUILD.gn
|
| index 47058d3fb825efd1405af30b3a08ea4a6f9bcb27..5ce040a820aeb42c4a8b8de9cb6229449404b5d3 100644
|
| --- a/net/BUILD.gn
|
| +++ b/net/BUILD.gn
|
| @@ -390,9 +390,11 @@ 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" ]
|
| }
|
| }
|
| }
|
| @@ -1579,6 +1581,7 @@ test("net_unittests") {
|
| # 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) {
|
|
|