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

Unified Diff: net/net.gyp

Issue 117533003: Make the blockfile cache an optional build product for chrome target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: #inculde ordre Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/disk_cache/cache_creator.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index c192286995bc5a2ff434cb2ab1774926a70f68de..6f1aa33717dc0e72872d1b7edcdbf4966d60dcbd 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -7,6 +7,7 @@
'chromium_code': 1,
'linux_link_kerberos%': 0,
+ 'use_blockfile_cache_backend%': 1,
'use_tracing_cache_backend%': 0,
'conditions': [
['chromeos==1 or embedded==1 or OS=="android" or OS=="ios"', {
@@ -1332,11 +1333,18 @@
'dns/dns_client.cc',
],
}],
+ ['use_blockfile_cache_backend==1', {
+ 'defines': [
+ 'USE_BLOCKFILE_CACHE_BACKEND',
+ ],
+ }, { # use_blockfile_cache_backend == 0
+ 'sources/': [ ['exclude', '^disk_cache/v[23]/' ] ]
rvargas (doing something else) 2014/02/06 05:09:28 I'm not sure about excluding v3. I've been leaning
gavinp 2014/02/09 15:29:37 Can you expand on that?
+ }],
['use_tracing_cache_backend==1', {
'defines': [
'USE_TRACING_CACHE_BACKEND'
],
- }],
+ }],
['use_openssl==1', {
'sources!': [
'base/crypto_module_nss.cc',
« no previous file with comments | « net/disk_cache/cache_creator.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698