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

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: fix compile on mac 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 662840c33cdf722957971495687950f58860b655..59c955c19a7e3b07899d0e2032440fc24f442cc6 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',
@@ -390,8 +390,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',
@@ -450,7 +450,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',
],
}],
],
@@ -1768,7 +1768,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