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

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: trivial net.gyp merge 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
« no previous file with comments | « net/disk_cache/tracing_cache_backend.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_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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 'disk_cache/sparse_control.h', 367 'disk_cache/sparse_control.h',
367 'disk_cache/stats.cc', 368 'disk_cache/stats.cc',
368 'disk_cache/stats.h', 369 'disk_cache/stats.h',
369 'disk_cache/stats_histogram.cc', 370 'disk_cache/stats_histogram.cc',
370 'disk_cache/stats_histogram.h', 371 'disk_cache/stats_histogram.h',
371 'disk_cache/storage_block-inl.h', 372 'disk_cache/storage_block-inl.h',
372 'disk_cache/storage_block.h', 373 'disk_cache/storage_block.h',
373 'disk_cache/stress_support.h', 374 'disk_cache/stress_support.h',
374 'disk_cache/trace.cc', 375 'disk_cache/trace.cc',
375 'disk_cache/trace.h', 376 'disk_cache/trace.h',
377 'disk_cache/tracing_cache_backend.cc',
378 'disk_cache/tracing_cache_backend.h',
376 'disk_cache/simple/simple_backend_impl.cc', 379 'disk_cache/simple/simple_backend_impl.cc',
377 'disk_cache/simple/simple_backend_impl.h', 380 'disk_cache/simple/simple_backend_impl.h',
378 'disk_cache/simple/simple_disk_format.cc', 381 'disk_cache/simple/simple_disk_format.cc',
379 'disk_cache/simple/simple_disk_format.h', 382 'disk_cache/simple/simple_disk_format.h',
380 'disk_cache/simple/simple_entry_impl.cc', 383 'disk_cache/simple/simple_entry_impl.cc',
381 'disk_cache/simple/simple_entry_impl.h', 384 'disk_cache/simple/simple_entry_impl.h',
382 'disk_cache/simple/simple_index.cc', 385 'disk_cache/simple/simple_index.cc',
383 'disk_cache/simple/simple_index.h', 386 'disk_cache/simple/simple_index.h',
384 'disk_cache/simple/simple_synchronous_entry.cc', 387 'disk_cache/simple/simple_synchronous_entry.cc',
385 'disk_cache/simple/simple_synchronous_entry.h', 388 'disk_cache/simple/simple_synchronous_entry.h',
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
1104 'defines': [ 1107 'defines': [
1105 'ENABLE_BUILT_IN_DNS', 1108 'ENABLE_BUILT_IN_DNS',
1106 ] 1109 ]
1107 }, { # else 1110 }, { # else
1108 'sources!': [ 1111 'sources!': [
1109 'dns/address_sorter_posix.cc', 1112 'dns/address_sorter_posix.cc',
1110 'dns/address_sorter_posix.h', 1113 'dns/address_sorter_posix.h',
1111 'dns/dns_client.cc', 1114 'dns/dns_client.cc',
1112 ], 1115 ],
1113 }], 1116 }],
1117 ['use_tracing_cache_backend==1', {
1118 'defines': [
1119 'USE_TRACING_CACHE_BACKEND'
1120 ],
1121 }],
1114 ['use_openssl==1', { 1122 ['use_openssl==1', {
1115 'sources!': [ 1123 'sources!': [
1116 'base/crypto_module_nss.cc', 1124 'base/crypto_module_nss.cc',
1117 'base/keygen_handler_nss.cc', 1125 'base/keygen_handler_nss.cc',
1118 'base/nss_memio.c', 1126 'base/nss_memio.c',
1119 'base/nss_memio.h', 1127 'base/nss_memio.h',
1120 'cert/cert_database_nss.cc', 1128 'cert/cert_database_nss.cc',
1121 'cert/cert_verify_proc_nss.cc', 1129 'cert/cert_verify_proc_nss.cc',
1122 'cert/cert_verify_proc_nss.h', 1130 'cert/cert_verify_proc_nss.h',
1123 'cert/nss_cert_database.cc', 1131 'cert/nss_cert_database.cc',
(...skipping 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after
2783 '--result', '<@(_outputs)', 2791 '--result', '<@(_outputs)',
2784 '--isolate', 'net_unittests.isolate', 2792 '--isolate', 'net_unittests.isolate',
2785 ], 2793 ],
2786 }, 2794 },
2787 ], 2795 ],
2788 }, 2796 },
2789 ], 2797 ],
2790 }], 2798 }],
2791 ], 2799 ],
2792 } 2800 }
OLDNEW
« no previous file with comments | « 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