Chromium Code Reviews| 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, |
|
gavinp
2014/02/05 20:54:13
In the upstream review, there was some discussion
|
| '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]/' ] ] |
| + }], |
| ['use_tracing_cache_backend==1', { |
| 'defines': [ |
| 'USE_TRACING_CACHE_BACKEND' |
| ], |
| - }], |
| + }], |
| ['use_openssl==1', { |
| 'sources!': [ |
| 'base/crypto_module_nss.cc', |