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

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

Powered by Google App Engine
This is Rietveld 408576698