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

Side by Side Diff: net/net.gyp

Issue 12192005: Add new simple disk cache backend. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build fix Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/disk_cache/simple/simple_synchronous_entry.cc ('k') | no next file » | 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_simple_cache_backend%': 0,
10 'conditions': [ 11 'conditions': [
11 ['chromeos==1 or OS=="android" or OS=="ios"', { 12 ['chromeos==1 or OS=="android" or OS=="ios"', {
12 # Disable Kerberos on ChromeOS, Android and iOS, at least for now. 13 # Disable Kerberos on ChromeOS, Android and iOS, at least for now.
13 # It needs configuration (krb5.conf and so on). 14 # It needs configuration (krb5.conf and so on).
14 'use_kerberos%': 0, 15 'use_kerberos%': 0,
15 }, { # chromeos == 0 16 }, { # chromeos == 0
16 'use_kerberos%': 1, 17 'use_kerberos%': 1,
17 }], 18 }],
18 ['OS=="android" and target_arch != "ia32"', { 19 ['OS=="android" and target_arch != "ia32"', {
19 # The way the cache uses mmap() is inefficient on some Android devices. 20 # The way the cache uses mmap() is inefficient on some Android devices.
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 'disk_cache/sparse_control.h', 409 'disk_cache/sparse_control.h',
409 'disk_cache/stats.cc', 410 'disk_cache/stats.cc',
410 'disk_cache/stats.h', 411 'disk_cache/stats.h',
411 'disk_cache/stats_histogram.cc', 412 'disk_cache/stats_histogram.cc',
412 'disk_cache/stats_histogram.h', 413 'disk_cache/stats_histogram.h',
413 'disk_cache/storage_block-inl.h', 414 'disk_cache/storage_block-inl.h',
414 'disk_cache/storage_block.h', 415 'disk_cache/storage_block.h',
415 'disk_cache/stress_support.h', 416 'disk_cache/stress_support.h',
416 'disk_cache/trace.cc', 417 'disk_cache/trace.cc',
417 'disk_cache/trace.h', 418 'disk_cache/trace.h',
419 'disk_cache/simple/simple_backend_impl.cc',
420 'disk_cache/simple/simple_backend_impl.h',
421 'disk_cache/simple/simple_disk_format.h',
422 'disk_cache/simple/simple_entry_impl.cc',
423 'disk_cache/simple/simple_entry_impl.h',
424 'disk_cache/simple/simple_synchronous_entry.cc',
425 'disk_cache/simple/simple_synchronous_entry.h',
418 'disk_cache/flash/format.h', 426 'disk_cache/flash/format.h',
419 'disk_cache/flash/log_store.cc', 427 'disk_cache/flash/log_store.cc',
420 'disk_cache/flash/log_store.h', 428 'disk_cache/flash/log_store.h',
421 'disk_cache/flash/log_store_entry.cc', 429 'disk_cache/flash/log_store_entry.cc',
422 'disk_cache/flash/log_store_entry.h', 430 'disk_cache/flash/log_store_entry.h',
423 'disk_cache/flash/segment.cc', 431 'disk_cache/flash/segment.cc',
424 'disk_cache/flash/segment.h', 432 'disk_cache/flash/segment.h',
425 'disk_cache/flash/storage.cc', 433 'disk_cache/flash/storage.cc',
426 'disk_cache/flash/storage.h', 434 'disk_cache/flash/storage.h',
427 'dns/address_sorter.h', 435 'dns/address_sorter.h',
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 'defines': [ 1049 'defines': [
1042 'ENABLE_BUILT_IN_DNS', 1050 'ENABLE_BUILT_IN_DNS',
1043 ] 1051 ]
1044 }, { # else 1052 }, { # else
1045 'sources!': [ 1053 'sources!': [
1046 'dns/address_sorter_posix.cc', 1054 'dns/address_sorter_posix.cc',
1047 'dns/address_sorter_posix.h', 1055 'dns/address_sorter_posix.h',
1048 'dns/dns_client.cc', 1056 'dns/dns_client.cc',
1049 ], 1057 ],
1050 }], 1058 }],
1059 ['use_simple_cache_backend==1', {
1060 'defines': [
1061 'USE_SIMPLE_CACHE_BACKEND',
1062 ]
1063 }],
1051 ['use_openssl==1', { 1064 ['use_openssl==1', {
1052 'sources!': [ 1065 'sources!': [
1053 'base/cert_database_nss.cc', 1066 'base/cert_database_nss.cc',
1054 'base/cert_verify_proc_nss.cc', 1067 'base/cert_verify_proc_nss.cc',
1055 'base/cert_verify_proc_nss.h', 1068 'base/cert_verify_proc_nss.h',
1056 'base/client_cert_store_impl_nss.cc', 1069 'base/client_cert_store_impl_nss.cc',
1057 'base/crypto_module_nss.cc', 1070 'base/crypto_module_nss.cc',
1058 'base/keygen_handler_nss.cc', 1071 'base/keygen_handler_nss.cc',
1059 'base/nss_cert_database.cc', 1072 'base/nss_cert_database.cc',
1060 'base/nss_cert_database.h', 1073 'base/nss_cert_database.h',
(...skipping 1479 matching lines...) Expand 10 before | Expand all | Expand 10 after
2540 '--result', '<@(_outputs)', 2553 '--result', '<@(_outputs)',
2541 '--isolate', 'net_unittests.isolate', 2554 '--isolate', 'net_unittests.isolate',
2542 ], 2555 ],
2543 }, 2556 },
2544 ], 2557 ],
2545 }, 2558 },
2546 ], 2559 ],
2547 }], 2560 }],
2548 ], 2561 ],
2549 } 2562 }
OLDNEW
« no previous file with comments | « net/disk_cache/simple/simple_synchronous_entry.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698