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

Side by Side Diff: net/net.gyp

Issue 1431723002: Add brotli content-encoding filter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 5 years 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 unified diff | Download patch
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'linux_link_kerberos%': 0, 8 'linux_link_kerberos%': 0,
9 'conditions': [ 9 'conditions': [
10 ['chromeos==1 or embedded==1 or OS=="ios"', { 10 ['chromeos==1 or embedded==1 or OS=="ios"', {
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 'type': '<(gtest_target_type)', 126 'type': '<(gtest_target_type)',
127 'dependencies': [ 127 'dependencies': [
128 '../base/base.gyp:base', 128 '../base/base.gyp:base',
129 '../base/base.gyp:base_i18n', 129 '../base/base.gyp:base_i18n',
130 '../base/base.gyp:base_prefs_test_support', 130 '../base/base.gyp:base_prefs_test_support',
131 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 131 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
132 '../crypto/crypto.gyp:crypto', 132 '../crypto/crypto.gyp:crypto',
133 '../crypto/crypto.gyp:crypto_test_support', 133 '../crypto/crypto.gyp:crypto_test_support',
134 '../testing/gmock.gyp:gmock', 134 '../testing/gmock.gyp:gmock',
135 '../testing/gtest.gyp:gtest', 135 '../testing/gtest.gyp:gtest',
136 '../third_party/brotli/brotli.gyp:brotli',
136 '../third_party/zlib/zlib.gyp:zlib', 137 '../third_party/zlib/zlib.gyp:zlib',
137 '../url/url.gyp:url_lib', 138 '../url/url.gyp:url_lib',
138 'balsa', 139 'balsa',
139 'http_server', 140 'http_server',
140 'net', 141 'net',
141 'net_quic_proto', 142 'net_quic_proto',
142 'net_derived_sources', 143 'net_derived_sources',
143 'net_extras', 144 'net_extras',
144 'net_test_support', 145 'net_test_support',
145 'simple_quic_tools', 146 'simple_quic_tools',
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 }], 268 }],
268 [ 'enable_websockets != 1', { 269 [ 'enable_websockets != 1', {
269 'sources/': [ 270 'sources/': [
270 ['exclude', '^websockets/'], 271 ['exclude', '^websockets/'],
271 ['exclude', '^server/'], 272 ['exclude', '^server/'],
272 ], 273 ],
273 'dependencies!': [ 274 'dependencies!': [
274 'http_server', 275 'http_server',
275 ], 276 ],
276 }], 277 }],
278 [ 'disable_brotli_support==1', {
279 'sources!': [
280 'filter/brotli_filter_unittest.cc',
281 ],
282 'dependencies!': [
283 '../third_party/brotli/brotli.gyp:brotli',
284 ],
285 },
286 ],
277 ['disable_file_support==1', { 287 ['disable_file_support==1', {
278 'sources!': [ 288 'sources!': [
279 'base/directory_lister_unittest.cc', 289 'base/directory_lister_unittest.cc',
280 'url_request/url_request_file_job_unittest.cc', 290 'url_request/url_request_file_job_unittest.cc',
281 ], 291 ],
282 }], 292 }],
283 [ 'disable_ftp_support==1', { 293 [ 'disable_ftp_support==1', {
284 'sources/': [ 294 'sources/': [
285 ['exclude', '^ftp/'], 295 ['exclude', '^ftp/'],
286 ], 296 ],
(...skipping 1348 matching lines...) Expand 10 before | Expand all | Expand 10 after
1635 '../build/isolate.gypi', 1645 '../build/isolate.gypi',
1636 ], 1646 ],
1637 'sources': [ 1647 'sources': [
1638 'net_unittests.isolate', 1648 'net_unittests.isolate',
1639 ], 1649 ],
1640 }, 1650 },
1641 ], 1651 ],
1642 }], 1652 }],
1643 ], 1653 ],
1644 } 1654 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698