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

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: Add brotli reference link Created 5 years, 1 month 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 'type': '<(gtest_target_type)', 125 'type': '<(gtest_target_type)',
126 'dependencies': [ 126 'dependencies': [
127 '../base/base.gyp:base', 127 '../base/base.gyp:base',
128 '../base/base.gyp:base_i18n', 128 '../base/base.gyp:base_i18n',
129 '../base/base.gyp:base_prefs_test_support', 129 '../base/base.gyp:base_prefs_test_support',
130 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 130 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
131 '../crypto/crypto.gyp:crypto', 131 '../crypto/crypto.gyp:crypto',
132 '../crypto/crypto.gyp:crypto_test_support', 132 '../crypto/crypto.gyp:crypto_test_support',
133 '../testing/gmock.gyp:gmock', 133 '../testing/gmock.gyp:gmock',
134 '../testing/gtest.gyp:gtest', 134 '../testing/gtest.gyp:gtest',
135 '../third_party/brotli/brotli.gyp:brotli',
135 '../third_party/zlib/zlib.gyp:zlib', 136 '../third_party/zlib/zlib.gyp:zlib',
136 '../url/url.gyp:url_lib', 137 '../url/url.gyp:url_lib',
137 'balsa', 138 'balsa',
138 'http_server', 139 'http_server',
139 'net', 140 'net',
140 'net_quic_proto', 141 'net_quic_proto',
141 'net_derived_sources', 142 'net_derived_sources',
142 'net_extras', 143 'net_extras',
143 'net_test_support', 144 'net_test_support',
144 'simple_quic_tools', 145 'simple_quic_tools',
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 }], 266 }],
266 [ 'enable_websockets != 1', { 267 [ 'enable_websockets != 1', {
267 'sources/': [ 268 'sources/': [
268 ['exclude', '^websockets/'], 269 ['exclude', '^websockets/'],
269 ['exclude', '^server/'], 270 ['exclude', '^server/'],
270 ], 271 ],
271 'dependencies!': [ 272 'dependencies!': [
272 'http_server', 273 'http_server',
273 ], 274 ],
274 }], 275 }],
276 [ 'disable_brotli_support==1', {
277 'sources!': [
278 'filter/brotli_filter_unittest.cc',
279 ],
280 'dependencies!': [
281 '../third_party/brotli/brotli.gyp:brotli',
282 ],
283 },
284 ],
275 ['disable_file_support==1', { 285 ['disable_file_support==1', {
276 'sources!': [ 286 'sources!': [
277 'base/directory_lister_unittest.cc', 287 'base/directory_lister_unittest.cc',
278 'url_request/url_request_file_job_unittest.cc', 288 'url_request/url_request_file_job_unittest.cc',
279 ], 289 ],
280 }], 290 }],
281 [ 'disable_ftp_support==1', { 291 [ 'disable_ftp_support==1', {
282 'sources/': [ 292 'sources/': [
283 ['exclude', '^ftp/'], 293 ['exclude', '^ftp/'],
284 ], 294 ],
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 }, 384 },
375 ], 385 ],
376 'sources!': [ 386 'sources!': [
377 # TODO(droger): The following tests are disabled because the 387 # TODO(droger): The following tests are disabled because the
378 # implementation is missing or incomplete. 388 # implementation is missing or incomplete.
379 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS. 389 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS.
380 'base/keygen_handler_unittest.cc', 390 'base/keygen_handler_unittest.cc',
381 'disk_cache/backend_unittest.cc', 391 'disk_cache/backend_unittest.cc',
382 'disk_cache/blockfile/block_files_unittest.cc', 392 'disk_cache/blockfile/block_files_unittest.cc',
383 # Need to read input data files. 393 # Need to read input data files.
394 'filter/brotli_filter_unittest.cc',
384 'filter/gzip_filter_unittest.cc', 395 'filter/gzip_filter_unittest.cc',
385 # Need TestServer. 396 # Need TestServer.
386 "cert_net/cert_net_fetcher_impl_unittest.cc", 397 "cert_net/cert_net_fetcher_impl_unittest.cc",
387 'proxy/proxy_script_fetcher_impl_unittest.cc', 398 'proxy/proxy_script_fetcher_impl_unittest.cc',
388 'socket/ssl_client_socket_unittest.cc', 399 'socket/ssl_client_socket_unittest.cc',
389 'socket/ssl_server_socket_unittest.cc', 400 'socket/ssl_server_socket_unittest.cc',
390 'spdy/fuzzing/hpack_fuzz_util_test.cc', 401 'spdy/fuzzing/hpack_fuzz_util_test.cc',
391 # Needs GetAppOutput(). 402 # Needs GetAppOutput().
392 'test/python_utils_unittest.cc', 403 'test/python_utils_unittest.cc',
393 'url_request/url_fetcher_impl_unittest.cc', 404 'url_request/url_fetcher_impl_unittest.cc',
(...skipping 1237 matching lines...) Expand 10 before | Expand all | Expand 10 after
1631 '../build/isolate.gypi', 1642 '../build/isolate.gypi',
1632 ], 1643 ],
1633 'sources': [ 1644 'sources': [
1634 'net_unittests.isolate', 1645 'net_unittests.isolate',
1635 ], 1646 ],
1636 }, 1647 },
1637 ], 1648 ],
1638 }], 1649 }],
1639 ], 1650 ],
1640 } 1651 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698