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

Side by Side Diff: net/net.gyp

Issue 13731002: Cache Backend Proxy to intercept all cache events from the IO thread. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: added destructor Created 7 years, 8 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
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_tracing_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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 'disk_cache/sparse_control.h', 375 'disk_cache/sparse_control.h',
375 'disk_cache/stats.cc', 376 'disk_cache/stats.cc',
376 'disk_cache/stats.h', 377 'disk_cache/stats.h',
377 'disk_cache/stats_histogram.cc', 378 'disk_cache/stats_histogram.cc',
378 'disk_cache/stats_histogram.h', 379 'disk_cache/stats_histogram.h',
379 'disk_cache/storage_block-inl.h', 380 'disk_cache/storage_block-inl.h',
380 'disk_cache/storage_block.h', 381 'disk_cache/storage_block.h',
381 'disk_cache/stress_support.h', 382 'disk_cache/stress_support.h',
382 'disk_cache/trace.cc', 383 'disk_cache/trace.cc',
383 'disk_cache/trace.h', 384 'disk_cache/trace.h',
385 'disk_cache/tracing_cache_backend.cc',
386 'disk_cache/tracing_cache_backend.h',
384 'disk_cache/simple/simple_backend_impl.cc', 387 'disk_cache/simple/simple_backend_impl.cc',
385 'disk_cache/simple/simple_backend_impl.h', 388 'disk_cache/simple/simple_backend_impl.h',
386 'disk_cache/simple/simple_disk_format.cc', 389 'disk_cache/simple/simple_disk_format.cc',
387 'disk_cache/simple/simple_disk_format.h', 390 'disk_cache/simple/simple_disk_format.h',
388 'disk_cache/simple/simple_entry_impl.cc', 391 'disk_cache/simple/simple_entry_impl.cc',
389 'disk_cache/simple/simple_entry_impl.h', 392 'disk_cache/simple/simple_entry_impl.h',
390 'disk_cache/simple/simple_index.cc', 393 'disk_cache/simple/simple_index.cc',
391 'disk_cache/simple/simple_index.h', 394 'disk_cache/simple/simple_index.h',
392 'disk_cache/simple/simple_synchronous_entry.cc', 395 'disk_cache/simple/simple_synchronous_entry.cc',
393 'disk_cache/simple/simple_synchronous_entry.h', 396 'disk_cache/simple/simple_synchronous_entry.h',
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after
1074 'defines': [ 1077 'defines': [
1075 'ENABLE_BUILT_IN_DNS', 1078 'ENABLE_BUILT_IN_DNS',
1076 ] 1079 ]
1077 }, { # else 1080 }, { # else
1078 'sources!': [ 1081 'sources!': [
1079 'dns/address_sorter_posix.cc', 1082 'dns/address_sorter_posix.cc',
1080 'dns/address_sorter_posix.h', 1083 'dns/address_sorter_posix.h',
1081 'dns/dns_client.cc', 1084 'dns/dns_client.cc',
1082 ], 1085 ],
1083 }], 1086 }],
1087 ['use_tracing_cache_backend==1', {
1088 'defines': [
1089 'USE_TRACING_CACHE_BACKEND'
1090 ],
1091 },
1092 { # else
1093 'sources!': [
1094 'disk_cache/tracing_cache_backend.cc',
1095 'disk_cache/tracing_cache_backend.h',
1096 ],
1097 }],
1084 ['use_openssl==1', { 1098 ['use_openssl==1', {
1085 'sources!': [ 1099 'sources!': [
1086 'base/crypto_module_nss.cc', 1100 'base/crypto_module_nss.cc',
1087 'base/keygen_handler_nss.cc', 1101 'base/keygen_handler_nss.cc',
1088 'base/nss_memio.c', 1102 'base/nss_memio.c',
1089 'base/nss_memio.h', 1103 'base/nss_memio.h',
1090 'cert/cert_database_nss.cc', 1104 'cert/cert_database_nss.cc',
1091 'cert/cert_verify_proc_nss.cc', 1105 'cert/cert_verify_proc_nss.cc',
1092 'cert/cert_verify_proc_nss.h', 1106 'cert/cert_verify_proc_nss.h',
1093 'cert/nss_cert_database.cc', 1107 'cert/nss_cert_database.cc',
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after
1996 'cookies/cookie_store_test_callbacks.cc', 2010 'cookies/cookie_store_test_callbacks.cc',
1997 'cookies/cookie_store_test_callbacks.h', 2011 'cookies/cookie_store_test_callbacks.h',
1998 'cookies/cookie_store_test_helpers.cc', 2012 'cookies/cookie_store_test_helpers.cc',
1999 'cookies/cookie_store_test_helpers.h', 2013 'cookies/cookie_store_test_helpers.h',
2000 'disk_cache/disk_cache_test_base.cc', 2014 'disk_cache/disk_cache_test_base.cc',
2001 'disk_cache/disk_cache_test_base.h', 2015 'disk_cache/disk_cache_test_base.h',
2002 'disk_cache/disk_cache_test_util.cc', 2016 'disk_cache/disk_cache_test_util.cc',
2003 'disk_cache/disk_cache_test_util.h', 2017 'disk_cache/disk_cache_test_util.h',
2004 'disk_cache/flash/flash_cache_test_base.h', 2018 'disk_cache/flash/flash_cache_test_base.h',
2005 'disk_cache/flash/flash_cache_test_base.cc', 2019 'disk_cache/flash/flash_cache_test_base.cc',
2020 'disk_cache/tracing_cache_backend.cc',
rvargas (doing something else) 2013/04/05 19:25:13 I don't like adding the same files to two differen
pasko-google - do not use 2013/04/08 15:37:40 The reason was to save on compiled binary size. Th
rvargas (doing something else) 2013/04/08 18:28:34 Saving binary size should be the job of the linker
pasko-google - do not use 2013/04/09 11:53:17 I am relying on the linker now. Thanks. Generally
2021 'disk_cache/tracing_cache_backend.h',
2006 'dns/dns_test_util.cc', 2022 'dns/dns_test_util.cc',
2007 'dns/dns_test_util.h', 2023 'dns/dns_test_util.h',
2008 'dns/mock_host_resolver.cc', 2024 'dns/mock_host_resolver.cc',
2009 'dns/mock_host_resolver.h', 2025 'dns/mock_host_resolver.h',
2010 'proxy/mock_proxy_resolver.cc', 2026 'proxy/mock_proxy_resolver.cc',
2011 'proxy/mock_proxy_resolver.h', 2027 'proxy/mock_proxy_resolver.h',
2012 'proxy/mock_proxy_script_fetcher.cc', 2028 'proxy/mock_proxy_script_fetcher.cc',
2013 'proxy/mock_proxy_script_fetcher.h', 2029 'proxy/mock_proxy_script_fetcher.h',
2014 'proxy/proxy_config_service_common_unittest.cc', 2030 'proxy/proxy_config_service_common_unittest.cc',
2015 'proxy/proxy_config_service_common_unittest.h', 2031 'proxy/proxy_config_service_common_unittest.h',
(...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after
2708 '--result', '<@(_outputs)', 2724 '--result', '<@(_outputs)',
2709 '--isolate', 'net_unittests.isolate', 2725 '--isolate', 'net_unittests.isolate',
2710 ], 2726 ],
2711 }, 2727 },
2712 ], 2728 ],
2713 }, 2729 },
2714 ], 2730 ],
2715 }], 2731 }],
2716 ], 2732 ],
2717 } 2733 }
OLDNEW
« net/disk_cache/tracing_cache_backend.cc ('K') | « net/disk_cache/tracing_cache_backend.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698