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

Side by Side Diff: net/net.gyp

Issue 10880071: Disable FTP on iOS (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: After rebasing Created 8 years, 3 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 | « chrome/browser/profiles/profile_impl_io_data.cc ('k') | net/url_request/url_request_context.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 ], 883 ],
884 }, 884 },
885 'sources!': [ 885 'sources!': [
886 'disk_cache/mapped_file_posix.cc', 886 'disk_cache/mapped_file_posix.cc',
887 ], 887 ],
888 }, { # else 888 }, { # else
889 'sources!': [ 889 'sources!': [
890 'disk_cache/mapped_file_avoid_mmap_posix.cc', 890 'disk_cache/mapped_file_avoid_mmap_posix.cc',
891 ], 891 ],
892 }], 892 }],
893 [ 'disable_ftp_support==1', {
894 'sources/': [
895 ['exclude', '^ftp/'],
896 ],
897 'sources!': [
898 'url_request/ftp_protocol_handler.cc',
899 'url_request/ftp_protocol_handler.h',
900 'url_request/url_request_ftp_job.cc',
901 'url_request/url_request_ftp_job.h',
902 ],
903 },
904 ],
893 ['use_openssl==1', { 905 ['use_openssl==1', {
894 'sources!': [ 906 'sources!': [
895 'base/cert_database_nss.cc', 907 'base/cert_database_nss.cc',
896 'base/cert_verify_proc_nss.cc', 908 'base/cert_verify_proc_nss.cc',
897 'base/cert_verify_proc_nss.h', 909 'base/cert_verify_proc_nss.h',
898 'base/crypto_module_nss.cc', 910 'base/crypto_module_nss.cc',
899 'base/dnssec_keyset.cc', 911 'base/dnssec_keyset.cc',
900 'base/dnssec_keyset.h', 912 'base/dnssec_keyset.h',
901 'base/keygen_handler_nss.cc', 913 'base/keygen_handler_nss.cc',
902 'base/nss_memio.c', 914 'base/nss_memio.c',
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1085 ['include', '^base/net_module\\.'], 1097 ['include', '^base/net_module\\.'],
1086 ['include', '^base/net_util\\.'], 1098 ['include', '^base/net_util\\.'],
1087 ['include', '^base/net_util_posix\\.cc$'], 1099 ['include', '^base/net_util_posix\\.cc$'],
1088 ['include', '^base/platform_mime_util\\.h$'], 1100 ['include', '^base/platform_mime_util\\.h$'],
1089 ['include', '^base/registry_controlled_domains/registry_controlled _domain\\.'], 1101 ['include', '^base/registry_controlled_domains/registry_controlled _domain\\.'],
1090 ['include', '^http/http_byte_range\\.'], 1102 ['include', '^http/http_byte_range\\.'],
1091 ['include', '^http/http_content_disposition\\.'], 1103 ['include', '^http/http_content_disposition\\.'],
1092 ['include', '^http/http_util\\.'], 1104 ['include', '^http/http_util\\.'],
1093 ['include', '^http/http_util_icu\\.cc$'], 1105 ['include', '^http/http_util_icu\\.cc$'],
1094 ['include', '^http/http_version\\.h$'], 1106 ['include', '^http/http_version\\.h$'],
1107 ['include', '^url_request/url_request_job_manager\\.'],
1095 ], 1108 ],
1096 }, 1109 },
1097 ], 1110 ],
1098 [ 'OS == "android"', { 1111 [ 'OS == "android"', {
1099 'dependencies': [ 1112 'dependencies': [
1100 '../third_party/openssl/openssl.gyp:openssl', 1113 '../third_party/openssl/openssl.gyp:openssl',
1101 'net_jni_headers', 1114 'net_jni_headers',
1102 ], 1115 ],
1103 'sources!': [ 1116 'sources!': [
1104 'base/dnssec_chain_verifier.cc', 1117 'base/dnssec_chain_verifier.cc',
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1458 ], 1471 ],
1459 }, 1472 },
1460 ], 1473 ],
1461 [ 'enable_websockets != 1', { 1474 [ 'enable_websockets != 1', {
1462 'sources/': [ 1475 'sources/': [
1463 ['exclude', '^socket_stream/'], 1476 ['exclude', '^socket_stream/'],
1464 ['exclude', '^websockets/'], 1477 ['exclude', '^websockets/'],
1465 ['exclude', '^spdy/spdy_websocket_stream_spdy._unittest\\.cc$'], 1478 ['exclude', '^spdy/spdy_websocket_stream_spdy._unittest\\.cc$'],
1466 ], 1479 ],
1467 }], 1480 }],
1481 [ 'disable_ftp_support==1', {
1482 'sources/': [
1483 ['exclude', '^ftp/'],
1484 ],
1485 'sources!': [
1486 'url_request/url_request_ftp_job_unittest.cc',
1487 ],
1488 },
1489 ],
1468 [ 'OS == "win"', { 1490 [ 'OS == "win"', {
1469 'sources!': [ 1491 'sources!': [
1470 'dns/dns_config_service_posix_unittest.cc', 1492 'dns/dns_config_service_posix_unittest.cc',
1471 'http/http_auth_gssapi_posix_unittest.cc', 1493 'http/http_auth_gssapi_posix_unittest.cc',
1472 ], 1494 ],
1473 # This is needed to trigger the dll copy step on windows. 1495 # This is needed to trigger the dll copy step on windows.
1474 # TODO(mark): Specifying this here shouldn't be necessary. 1496 # TODO(mark): Specifying this here shouldn't be necessary.
1475 'dependencies': [ 1497 'dependencies': [
1476 '../third_party/icu/icu.gyp:icudata', 1498 '../third_party/icu/icu.gyp:icudata',
1477 '../third_party/nss/nss.gyp:nspr', 1499 '../third_party/nss/nss.gyp:nspr',
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
2122 '--result', '<@(_outputs)', 2144 '--result', '<@(_outputs)',
2123 '--isolate', 'net_unittests.isolate', 2145 '--isolate', 'net_unittests.isolate',
2124 ], 2146 ],
2125 }, 2147 },
2126 ], 2148 ],
2127 }, 2149 },
2128 ], 2150 ],
2129 }], 2151 }],
2130 ], 2152 ],
2131 } 2153 }
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_impl_io_data.cc ('k') | net/url_request/url_request_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698