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 1260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1280 'defines': [ | 1281 'defines': [ |
1281 'ENABLE_BUILT_IN_DNS', | 1282 'ENABLE_BUILT_IN_DNS', |
1282 ] | 1283 ] |
1283 }, { # else | 1284 }, { # else |
1284 'sources!': [ | 1285 'sources!': [ |
1285 'dns/address_sorter_posix.cc', | 1286 'dns/address_sorter_posix.cc', |
1286 'dns/address_sorter_posix.h', | 1287 'dns/address_sorter_posix.h', |
1287 'dns/dns_client.cc', | 1288 'dns/dns_client.cc', |
1288 ], | 1289 ], |
1289 }], | 1290 }], |
| 1291 ['use_blockfile_cache_backend==1', { |
| 1292 'defines': [ |
| 1293 'USE_BLOCKFILE_CACHE_BACKEND', |
| 1294 ], |
| 1295 }, { # use_blockfile_cache_backend == 0 |
| 1296 'sources!': [ |
| 1297 'disk_cache/blockfile/addr.cc', |
| 1298 'disk_cache/blockfile/addr.h', |
| 1299 'disk_cache/blockfile/backend_impl.cc', |
| 1300 'disk_cache/blockfile/backend_impl.h', |
| 1301 'disk_cache/blockfile/bitmap.cc', |
| 1302 'disk_cache/blockfile/bitmap.h', |
| 1303 'disk_cache/blockfile/block_files.cc', |
| 1304 'disk_cache/blockfile/block_files.h', |
| 1305 'disk_cache/blockfile/disk_format.cc', |
| 1306 'disk_cache/blockfile/disk_format.h', |
| 1307 'disk_cache/blockfile/disk_format_base.h', |
| 1308 'disk_cache/blockfile/entry_impl.cc', |
| 1309 'disk_cache/blockfile/entry_impl.h', |
| 1310 'disk_cache/blockfile/errors.h', |
| 1311 'disk_cache/blockfile/eviction.cc', |
| 1312 'disk_cache/blockfile/eviction.h', |
| 1313 'disk_cache/blockfile/experiments.h', |
| 1314 'disk_cache/blockfile/file.cc', |
| 1315 'disk_cache/blockfile/file.h', |
| 1316 'disk_cache/blockfile/file_block.h', |
| 1317 'disk_cache/blockfile/file_lock.cc', |
| 1318 'disk_cache/blockfile/file_lock.h', |
| 1319 'disk_cache/blockfile/file_posix.cc', |
| 1320 'disk_cache/blockfile/file_win.cc', |
| 1321 'disk_cache/blockfile/histogram_macros.h', |
| 1322 'disk_cache/blockfile/in_flight_backend_io.cc', |
| 1323 'disk_cache/blockfile/in_flight_backend_io.h', |
| 1324 'disk_cache/blockfile/in_flight_io.cc', |
| 1325 'disk_cache/blockfile/in_flight_io.h', |
| 1326 'disk_cache/blockfile/mapped_file.cc', |
| 1327 'disk_cache/blockfile/mapped_file.h', |
| 1328 'disk_cache/blockfile/mapped_file_posix.cc', |
| 1329 'disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc', |
| 1330 'disk_cache/blockfile/mapped_file_win.cc', |
| 1331 'disk_cache/blockfile/rankings.cc', |
| 1332 'disk_cache/blockfile/rankings.h', |
| 1333 'disk_cache/blockfile/sparse_control.cc', |
| 1334 'disk_cache/blockfile/sparse_control.h', |
| 1335 'disk_cache/blockfile/stats.cc', |
| 1336 'disk_cache/blockfile/stats.h', |
| 1337 'disk_cache/blockfile/stats_histogram.cc', |
| 1338 'disk_cache/blockfile/stats_histogram.h', |
| 1339 'disk_cache/blockfile/storage_block-inl.h', |
| 1340 'disk_cache/blockfile/storage_block.h', |
| 1341 'disk_cache/blockfile/stress_support.h', |
| 1342 'disk_cache/blockfile/trace.cc', |
| 1343 'disk_cache/blockfile/trace.h', |
| 1344 'disk_cache/blockfile/v3/block_bitmaps.cc', |
| 1345 'disk_cache/blockfile/v3/block_bitmaps.h', |
| 1346 'disk_cache/blockfile/v3/disk_format_v3.h', |
| 1347 ], |
| 1348 }], |
1290 ['use_tracing_cache_backend==1', { | 1349 ['use_tracing_cache_backend==1', { |
1291 'defines': [ | 1350 'defines': [ |
1292 'USE_TRACING_CACHE_BACKEND' | 1351 'USE_TRACING_CACHE_BACKEND' |
1293 ], | 1352 ], |
1294 }], | 1353 }], |
1295 ['use_openssl==1', { | 1354 ['use_openssl==1', { |
1296 'sources!': [ | 1355 'sources!': [ |
1297 'base/crypto_module_nss.cc', | 1356 'base/crypto_module_nss.cc', |
1298 'base/keygen_handler_nss.cc', | 1357 'base/keygen_handler_nss.cc', |
1299 'base/nss_memio.c', | 1358 'base/nss_memio.c', |
1300 'base/nss_memio.h', | 1359 'base/nss_memio.h', |
1301 'cert/cert_database_nss.cc', | 1360 'cert/cert_database_nss.cc', |
1302 'cert/cert_verify_proc_nss.cc', | 1361 'cert/cert_verify_proc_nss.cc', |
1303 'cert/cert_verify_proc_nss.h', | 1362 'cert/cert_verify_proc_nss.h', |
1304 'cert/ct_log_verifier_nss.cc', | 1363 'cert/ct_log_verifier_nss.cc', |
(...skipping 1788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3093 'net_unittests.isolate', | 3152 'net_unittests.isolate', |
3094 ], | 3153 ], |
3095 'sources': [ | 3154 'sources': [ |
3096 'net_unittests.isolate', | 3155 'net_unittests.isolate', |
3097 ], | 3156 ], |
3098 }, | 3157 }, |
3099 ], | 3158 ], |
3100 }], | 3159 }], |
3101 ], | 3160 ], |
3102 } | 3161 } |
OLD | NEW |