OLD | NEW |
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_blockfile_cache_backend%': 1, |
10 'use_tracing_cache_backend%': 0, | 11 'use_tracing_cache_backend%': 0, |
11 'conditions': [ | 12 'conditions': [ |
12 ['chromeos==1 or embedded==1 or OS=="android" or OS=="ios"', { | 13 ['chromeos==1 or embedded==1 or OS=="android" or OS=="ios"', { |
13 # Disable Kerberos on ChromeOS, Android and iOS, at least for now. | 14 # Disable Kerberos on ChromeOS, Android and iOS, at least for now. |
14 # It needs configuration (krb5.conf and so on). | 15 # It needs configuration (krb5.conf and so on). |
15 'use_kerberos%': 0, | 16 'use_kerberos%': 0, |
16 }, { # chromeos == 0 and embedded==0 and OS!="android" and OS!="ios" | 17 }, { # chromeos == 0 and embedded==0 and OS!="android" and OS!="ios" |
17 'use_kerberos%': 1, | 18 'use_kerberos%': 1, |
18 }], | 19 }], |
19 ['OS=="android" and target_arch != "ia32"', { | 20 ['OS=="android" and target_arch != "ia32"', { |
(...skipping 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1339 'defines': [ | 1340 'defines': [ |
1340 'ENABLE_BUILT_IN_DNS', | 1341 'ENABLE_BUILT_IN_DNS', |
1341 ] | 1342 ] |
1342 }, { # else | 1343 }, { # else |
1343 'sources!': [ | 1344 'sources!': [ |
1344 'dns/address_sorter_posix.cc', | 1345 'dns/address_sorter_posix.cc', |
1345 'dns/address_sorter_posix.h', | 1346 'dns/address_sorter_posix.h', |
1346 'dns/dns_client.cc', | 1347 'dns/dns_client.cc', |
1347 ], | 1348 ], |
1348 }], | 1349 }], |
| 1350 ['use_blockfile_cache_backend==1', { |
| 1351 'defines': [ |
| 1352 'USE_BLOCKFILE_CACHE_BACKEND', |
| 1353 ], |
| 1354 }, { # use_blockfile_cache_backend == 0 |
| 1355 'sources/': [ ['exclude', '^disk_cache/blockfile/' ] ] |
| 1356 }], |
1349 ['use_tracing_cache_backend==1', { | 1357 ['use_tracing_cache_backend==1', { |
1350 'defines': [ | 1358 'defines': [ |
1351 'USE_TRACING_CACHE_BACKEND' | 1359 'USE_TRACING_CACHE_BACKEND' |
1352 ], | 1360 ], |
1353 }], | 1361 }], |
1354 ['use_openssl==1', { | 1362 ['use_openssl==1', { |
1355 'sources!': [ | 1363 'sources!': [ |
1356 'base/crypto_module_nss.cc', | 1364 'base/crypto_module_nss.cc', |
1357 'base/keygen_handler_nss.cc', | 1365 'base/keygen_handler_nss.cc', |
1358 'base/nss_memio.c', | 1366 'base/nss_memio.c', |
1359 'base/nss_memio.h', | 1367 'base/nss_memio.h', |
1360 'cert/cert_database_nss.cc', | 1368 'cert/cert_database_nss.cc', |
1361 'cert/cert_verify_proc_nss.cc', | 1369 'cert/cert_verify_proc_nss.cc', |
1362 'cert/cert_verify_proc_nss.h', | 1370 'cert/cert_verify_proc_nss.h', |
1363 'cert/ct_log_verifier_nss.cc', | 1371 'cert/ct_log_verifier_nss.cc', |
(...skipping 1862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3226 'net_unittests.isolate', | 3234 'net_unittests.isolate', |
3227 ], | 3235 ], |
3228 'sources': [ | 3236 'sources': [ |
3229 'net_unittests.isolate', | 3237 'net_unittests.isolate', |
3230 ], | 3238 ], |
3231 }, | 3239 }, |
3232 ], | 3240 ], |
3233 }], | 3241 }], |
3234 ], | 3242 ], |
3235 } | 3243 } |
OLD | NEW |