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

Side by Side Diff: net/net.gyp

Issue 544923002: Remove the tracing cache backend. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@preventry
Patch Set: Created 6 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 | « net/disk_cache/tracing/tracing_cache_backend.cc ('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 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'use_tracing_cache_backend%': 0,
11 'conditions': [ 10 'conditions': [
12 ['chromeos==1 or embedded==1 or OS=="android" or OS=="ios"', { 11 ['chromeos==1 or embedded==1 or OS=="android" or OS=="ios"', {
13 # Disable Kerberos on ChromeOS, Android and iOS, at least for now. 12 # Disable Kerberos on ChromeOS, Android and iOS, at least for now.
14 # It needs configuration (krb5.conf and so on). 13 # It needs configuration (krb5.conf and so on).
15 'use_kerberos%': 0, 14 'use_kerberos%': 0,
16 }, { # chromeos == 0 and embedded==0 and OS!="android" and OS!="ios" 15 }, { # chromeos == 0 and embedded==0 and OS!="android" and OS!="ios"
17 'use_kerberos%': 1, 16 'use_kerberos%': 1,
18 }], 17 }],
19 ['OS=="android" and target_arch != "ia32"', { 18 ['OS=="android" and target_arch != "ia32"', {
20 # The way the cache uses mmap() is inefficient on some Android devices. 19 # The way the cache uses mmap() is inefficient on some Android devices.
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 'defines': [ 195 'defines': [
197 'ENABLE_BUILT_IN_DNS', 196 'ENABLE_BUILT_IN_DNS',
198 ] 197 ]
199 }, { # else 198 }, { # else
200 'sources!': [ 199 'sources!': [
201 'dns/address_sorter_posix.cc', 200 'dns/address_sorter_posix.cc',
202 'dns/address_sorter_posix.h', 201 'dns/address_sorter_posix.h',
203 'dns/dns_client.cc', 202 'dns/dns_client.cc',
204 ], 203 ],
205 }], 204 }],
206 ['use_tracing_cache_backend==1', {
207 'defines': [
208 'USE_TRACING_CACHE_BACKEND'
209 ],
210 }],
211 ['use_openssl==1', { 205 ['use_openssl==1', {
212 'sources!': [ 206 'sources!': [
213 'base/crypto_module_nss.cc', 207 'base/crypto_module_nss.cc',
214 'base/keygen_handler_nss.cc', 208 'base/keygen_handler_nss.cc',
215 'base/nss_memio.c', 209 'base/nss_memio.c',
216 'base/nss_memio.h', 210 'base/nss_memio.h',
217 'cert/cert_database_nss.cc', 211 'cert/cert_database_nss.cc',
218 'cert/cert_verify_proc_nss.cc', 212 'cert/cert_verify_proc_nss.cc',
219 'cert/cert_verify_proc_nss.h', 213 'cert/cert_verify_proc_nss.h',
220 'cert/ct_log_verifier_nss.cc', 214 'cert/ct_log_verifier_nss.cc',
(...skipping 1506 matching lines...) Expand 10 before | Expand all | Expand 10 after
1727 'net_unittests.isolate', 1721 'net_unittests.isolate',
1728 ], 1722 ],
1729 'sources': [ 1723 'sources': [
1730 'net_unittests.isolate', 1724 'net_unittests.isolate',
1731 ], 1725 ],
1732 }, 1726 },
1733 ], 1727 ],
1734 }], 1728 }],
1735 ], 1729 ],
1736 } 1730 }
OLDNEW
« no previous file with comments | « net/disk_cache/tracing/tracing_cache_backend.cc ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698