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

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: Fix components_unittests 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 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 'sources!': [ 383 'sources!': [
384 # Need TestServer. 384 # Need TestServer.
385 "cert_net/cert_net_fetcher_impl_unittest.cc", 385 "cert_net/cert_net_fetcher_impl_unittest.cc",
386 # TODO(droger): The following tests are disabled because the 386 # TODO(droger): The following tests are disabled because the
387 # implementation is missing or incomplete. 387 # implementation is missing or incomplete.
388 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS. 388 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS.
389 'base/keygen_handler_unittest.cc', 389 'base/keygen_handler_unittest.cc',
390 'disk_cache/backend_unittest.cc', 390 'disk_cache/backend_unittest.cc',
391 'disk_cache/blockfile/block_files_unittest.cc', 391 'disk_cache/blockfile/block_files_unittest.cc',
392 # Need to read input data files. 392 # Need to read input data files.
393 'filter/brotli_filter_unittest.cc', 393 'filter/brotli_stream_source_unittest.cc',
394 'filter/gzip_filter_unittest.cc', 394 'filter/gzip_stream_source_unittest.cc',
395 'proxy/proxy_script_fetcher_impl_unittest.cc', 395 'proxy/proxy_script_fetcher_impl_unittest.cc',
396 'socket/ssl_client_socket_unittest.cc', 396 'socket/ssl_client_socket_unittest.cc',
397 'socket/ssl_server_socket_unittest.cc', 397 'socket/ssl_server_socket_unittest.cc',
398 'spdy/fuzzing/hpack_fuzz_util_test.cc', 398 'spdy/fuzzing/hpack_fuzz_util_test.cc',
399 # Needs GetAppOutput(). 399 # Needs GetAppOutput().
400 'test/python_utils_unittest.cc', 400 'test/python_utils_unittest.cc',
401 'url_request/url_fetcher_impl_unittest.cc', 401 'url_request/url_fetcher_impl_unittest.cc',
402 'url_request/url_request_context_builder_unittest.cc', 402 'url_request/url_request_context_builder_unittest.cc',
403 403
404 # The following tests are disabled because they don't apply to 404 # The following tests are disabled because they don't apply to
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 'socket/ssl_client_socket_pool_unittest.cc', 443 'socket/ssl_client_socket_pool_unittest.cc',
444 'spdy/spdy_network_transaction_unittest.cc', 444 'spdy/spdy_network_transaction_unittest.cc',
445 'spdy/spdy_proxy_client_socket_unittest.cc', 445 'spdy/spdy_proxy_client_socket_unittest.cc',
446 'url_request/url_request_job_unittest.cc', 446 'url_request/url_request_job_unittest.cc',
447 'url_request/url_request_unittest.cc', 447 'url_request/url_request_unittest.cc',
448 ], 448 ],
449 }], 449 }],
450 # Exclude brotli test if the support for brotli is disabled. 450 # Exclude brotli test if the support for brotli is disabled.
451 ['disable_brotli_filter == 1', { 451 ['disable_brotli_filter == 1', {
452 'sources!': [ 452 'sources!': [
453 'filter/brotli_filter_unittest.cc', 453 'filter/brotli_stream_source_unittest.cc',
454 ], 454 ],
455 }], 455 }],
456 ], 456 ],
457 'target_conditions': [ 457 'target_conditions': [
458 # These source files are excluded by default platform rules, but they 458 # These source files are excluded by default platform rules, but they
459 # are needed in specific cases on other platforms. Re-including them can 459 # are needed in specific cases on other platforms. Re-including them can
460 # only be done in target_conditions as it is evaluated after the 460 # only be done in target_conditions as it is evaluated after the
461 # platform rules. 461 # platform rules.
462 ['OS == "android"', { 462 ['OS == "android"', {
463 'sources/': [ 463 'sources/': [
(...skipping 1297 matching lines...) Expand 10 before | Expand all | Expand 10 after
1761 }, 1761 },
1762 { 1762 {
1763 'target_name': 'content_decoder_tool', 1763 'target_name': 'content_decoder_tool',
1764 'type': 'executable', 1764 'type': 'executable',
1765 'dependencies': [ 1765 'dependencies': [
1766 '../base/base.gyp:base', 1766 '../base/base.gyp:base',
1767 '../url/url.gyp:url_lib', 1767 '../url/url.gyp:url_lib',
1768 'net', 1768 'net',
1769 ], 1769 ],
1770 'sources': [ 1770 'sources': [
1771 'filter/mock_filter_context.cc',
1772 'tools/content_decoder_tool/content_decoder_tool.cc', 1771 'tools/content_decoder_tool/content_decoder_tool.cc',
1773 ], 1772 ],
1774 } 1773 }
1775 ], 1774 ],
1776 }], 1775 }],
1777 ['test_isolation_mode != "noop"', { 1776 ['test_isolation_mode != "noop"', {
1778 'targets': [ 1777 'targets': [
1779 { 1778 {
1780 'target_name': 'net_unittests_run', 1779 'target_name': 'net_unittests_run',
1781 'type': 'none', 1780 'type': 'none',
1782 'dependencies': [ 1781 'dependencies': [
1783 'net_unittests', 1782 'net_unittests',
1784 ], 1783 ],
1785 'includes': [ 1784 'includes': [
1786 '../build/isolate.gypi', 1785 '../build/isolate.gypi',
1787 ], 1786 ],
1788 'sources': [ 1787 'sources': [
1789 'net_unittests.isolate', 1788 'net_unittests.isolate',
1790 ], 1789 ],
1791 }, 1790 },
1792 ], 1791 ],
1793 }], 1792 }],
1794 ], 1793 ],
1795 } 1794 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698