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

Unified Diff: net/net.gyp

Issue 1662763002: [ON HOLD] Implement pull-based design for content decoding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 4 years, 5 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
Index: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index 5a101bfeb6058b7fdd309304fa90234c8dfe4714..c6be909406a4bd2fe51b19ac11e489fb26fc2c94 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -144,13 +144,13 @@
# Brotli support.
['disable_brotli_filter == 1', {
'sources': [
- 'filter/brotli_filter_disabled.cc',
+ 'filter/brotli_stream_source_disabled.cc',
],
},
# 'disable_brotli_filter != 1'
{
'sources': [
- 'filter/brotli_filter.cc',
+ 'filter/brotli_stream_source.cc',
],
'dependencies': [
'../third_party/brotli/brotli.gyp:brotli',
@@ -389,8 +389,8 @@
'disk_cache/backend_unittest.cc',
'disk_cache/blockfile/block_files_unittest.cc',
# Need to read input data files.
- 'filter/brotli_filter_unittest.cc',
- 'filter/gzip_filter_unittest.cc',
+ 'filter/brotli_stream_source_unittest.cc',
+ 'filter/gzip_stream_source_unittest.cc',
'proxy/proxy_script_fetcher_impl_unittest.cc',
'socket/ssl_client_socket_unittest.cc',
'socket/ssl_server_socket_unittest.cc',
@@ -449,7 +449,7 @@
# Exclude brotli test if the support for brotli is disabled.
['disable_brotli_filter == 1', {
'sources!': [
- 'filter/brotli_filter_unittest.cc',
+ 'filter/brotli_stream_source_unittest.cc',
],
}],
],
@@ -1686,7 +1686,6 @@
'net',
],
'sources': [
- 'filter/mock_filter_context.cc',
'tools/content_decoder_tool/content_decoder_tool.cc',
],
}

Powered by Google App Engine
This is Rietveld 408576698