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

Side by Side Diff: net/net.gyp

Issue 8857002: net: split the SSL session cache between incognito and normal. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1140 'proxy/proxy_server_unittest.cc', 1140 'proxy/proxy_server_unittest.cc',
1141 'proxy/proxy_service_unittest.cc', 1141 'proxy/proxy_service_unittest.cc',
1142 'proxy/sync_host_resolver_bridge_unittest.cc', 1142 'proxy/sync_host_resolver_bridge_unittest.cc',
1143 'socket/client_socket_pool_base_unittest.cc', 1143 'socket/client_socket_pool_base_unittest.cc',
1144 'socket/deterministic_socket_data_unittest.cc', 1144 'socket/deterministic_socket_data_unittest.cc',
1145 'socket/mock_client_socket_pool_manager.cc', 1145 'socket/mock_client_socket_pool_manager.cc',
1146 'socket/mock_client_socket_pool_manager.h', 1146 'socket/mock_client_socket_pool_manager.h',
1147 'socket/socks5_client_socket_unittest.cc', 1147 'socket/socks5_client_socket_unittest.cc',
1148 'socket/socks_client_socket_pool_unittest.cc', 1148 'socket/socks_client_socket_pool_unittest.cc',
1149 'socket/socks_client_socket_unittest.cc', 1149 'socket/socks_client_socket_unittest.cc',
1150 'socket/ssl_client_socket_nss_unittest.cc',
1151 'socket/ssl_client_socket_pool_unittest.cc', 1150 'socket/ssl_client_socket_pool_unittest.cc',
1152 'socket/ssl_client_socket_unittest.cc', 1151 'socket/ssl_client_socket_unittest.cc',
1153 'socket/ssl_server_socket_unittest.cc', 1152 'socket/ssl_server_socket_unittest.cc',
1154 'socket/tcp_client_socket_unittest.cc', 1153 'socket/tcp_client_socket_unittest.cc',
1155 'socket/tcp_server_socket_unittest.cc', 1154 'socket/tcp_server_socket_unittest.cc',
1156 'socket/transport_client_socket_pool_unittest.cc', 1155 'socket/transport_client_socket_pool_unittest.cc',
1157 'socket/transport_client_socket_unittest.cc', 1156 'socket/transport_client_socket_unittest.cc',
1158 'socket/web_socket_server_socket_unittest.cc', 1157 'socket/web_socket_server_socket_unittest.cc',
1159 'socket_stream/socket_stream_metrics_unittest.cc', 1158 'socket_stream/socket_stream_metrics_unittest.cc',
1160 'socket_stream/socket_stream_unittest.cc', 1159 'socket_stream/socket_stream_unittest.cc',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 ], 1235 ],
1237 }], 1236 }],
1238 [ 'use_openssl==1', { 1237 [ 'use_openssl==1', {
1239 # When building for OpenSSL, we need to exclude NSS specific tests. 1238 # When building for OpenSSL, we need to exclude NSS specific tests.
1240 # TODO(bulach): Add equivalent tests when the underlying 1239 # TODO(bulach): Add equivalent tests when the underlying
1241 # functionality is ported to OpenSSL. 1240 # functionality is ported to OpenSSL.
1242 'sources!': [ 1241 'sources!': [
1243 'base/x509_util_nss_unittest.cc', 1242 'base/x509_util_nss_unittest.cc',
1244 'base/cert_database_nss_unittest.cc', 1243 'base/cert_database_nss_unittest.cc',
1245 'base/dnssec_unittest.cc', 1244 'base/dnssec_unittest.cc',
1246 'socket/ssl_client_socket_nss_unittest.cc',
1247 ], 1245 ],
1248 }, { # else !use_openssl: remove the unneeded files 1246 }, { # else !use_openssl: remove the unneeded files
1249 'sources!': [ 1247 'sources!': [
1250 'base/x509_util_openssl_unittest.cc', 1248 'base/x509_util_openssl_unittest.cc',
1251 ], 1249 ],
1252 }, 1250 },
1253 ], 1251 ],
1254 [ 'OS == "win"', { 1252 [ 'OS == "win"', {
1255 'sources!': [ 1253 'sources!': [
1256 'dns/dns_config_service_posix_unittest.cc', 1254 'dns/dns_config_service_posix_unittest.cc',
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
1696 'tools/dump_cache/url_to_filename_encoder.cc', 1694 'tools/dump_cache/url_to_filename_encoder.cc',
1697 'tools/dump_cache/url_to_filename_encoder.h', 1695 'tools/dump_cache/url_to_filename_encoder.h',
1698 'tools/dump_cache/url_utilities.h', 1696 'tools/dump_cache/url_utilities.h',
1699 'tools/dump_cache/url_utilities.cc', 1697 'tools/dump_cache/url_utilities.cc',
1700 ], 1698 ],
1701 }, 1699 },
1702 ], 1700 ],
1703 }], 1701 }],
1704 ], 1702 ],
1705 } 1703 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698