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

Side by Side 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, 4 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 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 '../base/base.gyp:base_i18n', 137 '../base/base.gyp:base_i18n',
138 '../third_party/icu/icu.gyp:icui18n', 138 '../third_party/icu/icu.gyp:icui18n',
139 '../third_party/icu/icu.gyp:icuuc', 139 '../third_party/icu/icu.gyp:icuuc',
140 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 140 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
141 'net_quic_proto', 141 'net_quic_proto',
142 ], 142 ],
143 }], 143 }],
144 # Brotli support. 144 # Brotli support.
145 ['disable_brotli_filter == 1', { 145 ['disable_brotli_filter == 1', {
146 'sources': [ 146 'sources': [
147 'filter/brotli_filter_disabled.cc', 147 'filter/brotli_stream_source_disabled.cc',
148 ], 148 ],
149 }, 149 },
150 # 'disable_brotli_filter != 1' 150 # 'disable_brotli_filter != 1'
151 { 151 {
152 'sources': [ 152 'sources': [
153 'filter/brotli_filter.cc', 153 'filter/brotli_stream_source.cc',
154 ], 154 ],
155 'dependencies': [ 155 'dependencies': [
156 '../third_party/brotli/brotli.gyp:brotli', 156 '../third_party/brotli/brotli.gyp:brotli',
157 ], 157 ],
158 }], 158 }],
159 ], 159 ],
160 }, 160 },
161 { 161 {
162 # GN version: //net:net_unittests 162 # GN version: //net:net_unittests
163 'target_name': 'net_unittests', 163 'target_name': 'net_unittests',
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 'sources!': [ 382 'sources!': [
383 # Need TestServer. 383 # Need TestServer.
384 "cert_net/cert_net_fetcher_impl_unittest.cc", 384 "cert_net/cert_net_fetcher_impl_unittest.cc",
385 # TODO(droger): The following tests are disabled because the 385 # TODO(droger): The following tests are disabled because the
386 # implementation is missing or incomplete. 386 # implementation is missing or incomplete.
387 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS. 387 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS.
388 'base/keygen_handler_unittest.cc', 388 'base/keygen_handler_unittest.cc',
389 'disk_cache/backend_unittest.cc', 389 'disk_cache/backend_unittest.cc',
390 'disk_cache/blockfile/block_files_unittest.cc', 390 'disk_cache/blockfile/block_files_unittest.cc',
391 # Need to read input data files. 391 # Need to read input data files.
392 'filter/brotli_filter_unittest.cc', 392 'filter/brotli_stream_source_unittest.cc',
393 'filter/gzip_filter_unittest.cc', 393 'filter/gzip_stream_source_unittest.cc',
394 'proxy/proxy_script_fetcher_impl_unittest.cc', 394 'proxy/proxy_script_fetcher_impl_unittest.cc',
395 'socket/ssl_client_socket_unittest.cc', 395 'socket/ssl_client_socket_unittest.cc',
396 'socket/ssl_server_socket_unittest.cc', 396 'socket/ssl_server_socket_unittest.cc',
397 'spdy/fuzzing/hpack_fuzz_util_test.cc', 397 'spdy/fuzzing/hpack_fuzz_util_test.cc',
398 # Needs GetAppOutput(). 398 # Needs GetAppOutput().
399 'test/python_utils_unittest.cc', 399 'test/python_utils_unittest.cc',
400 'url_request/url_fetcher_impl_unittest.cc', 400 'url_request/url_fetcher_impl_unittest.cc',
401 'url_request/url_request_context_builder_unittest.cc', 401 'url_request/url_request_context_builder_unittest.cc',
402 402
403 # The following tests are disabled because they don't apply to 403 # The following tests are disabled because they don't apply to
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 'socket/ssl_client_socket_pool_unittest.cc', 442 'socket/ssl_client_socket_pool_unittest.cc',
443 'spdy/spdy_network_transaction_unittest.cc', 443 'spdy/spdy_network_transaction_unittest.cc',
444 'spdy/spdy_proxy_client_socket_unittest.cc', 444 'spdy/spdy_proxy_client_socket_unittest.cc',
445 'url_request/url_request_job_unittest.cc', 445 'url_request/url_request_job_unittest.cc',
446 'url_request/url_request_unittest.cc', 446 'url_request/url_request_unittest.cc',
447 ], 447 ],
448 }], 448 }],
449 # Exclude brotli test if the support for brotli is disabled. 449 # Exclude brotli test if the support for brotli is disabled.
450 ['disable_brotli_filter == 1', { 450 ['disable_brotli_filter == 1', {
451 'sources!': [ 451 'sources!': [
452 'filter/brotli_filter_unittest.cc', 452 'filter/brotli_stream_source_unittest.cc',
453 ], 453 ],
454 }], 454 }],
455 ], 455 ],
456 'target_conditions': [ 456 'target_conditions': [
457 # These source files are excluded by default platform rules, but they 457 # These source files are excluded by default platform rules, but they
458 # are needed in specific cases on other platforms. Re-including them can 458 # are needed in specific cases on other platforms. Re-including them can
459 # only be done in target_conditions as it is evaluated after the 459 # only be done in target_conditions as it is evaluated after the
460 # platform rules. 460 # platform rules.
461 ['OS == "android"', { 461 ['OS == "android"', {
462 'sources/': [ 462 'sources/': [
(...skipping 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1679 }, 1679 },
1680 { 1680 {
1681 'target_name': 'content_decoder_tool', 1681 'target_name': 'content_decoder_tool',
1682 'type': 'executable', 1682 'type': 'executable',
1683 'dependencies': [ 1683 'dependencies': [
1684 '../base/base.gyp:base', 1684 '../base/base.gyp:base',
1685 '../url/url.gyp:url_lib', 1685 '../url/url.gyp:url_lib',
1686 'net', 1686 'net',
1687 ], 1687 ],
1688 'sources': [ 1688 'sources': [
1689 'filter/mock_filter_context.cc',
1690 'tools/content_decoder_tool/content_decoder_tool.cc', 1689 'tools/content_decoder_tool/content_decoder_tool.cc',
1691 ], 1690 ],
1692 } 1691 }
1693 ], 1692 ],
1694 }], 1693 }],
1695 ['test_isolation_mode != "noop"', { 1694 ['test_isolation_mode != "noop"', {
1696 'targets': [ 1695 'targets': [
1697 { 1696 {
1698 'target_name': 'net_unittests_run', 1697 'target_name': 'net_unittests_run',
1699 'type': 'none', 1698 'type': 'none',
1700 'dependencies': [ 1699 'dependencies': [
1701 'net_unittests', 1700 'net_unittests',
1702 ], 1701 ],
1703 'includes': [ 1702 'includes': [
1704 '../build/isolate.gypi', 1703 '../build/isolate.gypi',
1705 ], 1704 ],
1706 'sources': [ 1705 'sources': [
1707 'net_unittests.isolate', 1706 'net_unittests.isolate',
1708 ], 1707 ],
1709 }, 1708 },
1710 ], 1709 ],
1711 }], 1710 }],
1712 ], 1711 ],
1713 } 1712 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698