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

Unified Diff: net/net.gyp

Issue 12192005: Add new simple disk cache backend. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to trunk (::FilePath --> base::FilePath) Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index c7bf23b70333b546a4efd8fd1318e3702595d0b0..646233d0e93138ee85de0bb27f5b47ef088b3e27 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -7,6 +7,7 @@
'chromium_code': 1,
'linux_link_kerberos%': 0,
+ 'use_very_simple_backend%': 0,
rvargas (doing something else) 2013/02/06 03:28:40 do we really need a gyp variable?
gavinp 2013/02/08 23:17:51 Can you tell me more about adding defines without
'conditions': [
['chromeos==1 or OS=="android" or OS=="ios"', {
# Disable Kerberos on ChromeOS, Android and iOS, at least for now.
@@ -52,6 +53,7 @@
'../sdch/sdch.gyp:sdch',
'../third_party/icu/icu.gyp:icui18n',
'../third_party/icu/icu.gyp:icuuc',
+ '../third_party/smhasher/smhasher.gyp:murmurhash3',
'../third_party/zlib/zlib.gyp:zlib',
'net_resources',
],
@@ -405,6 +407,13 @@
'disk_cache/stress_support.h',
'disk_cache/trace.cc',
'disk_cache/trace.h',
+ 'disk_cache/very_simple/very_simple_backend_impl.cc',
+ 'disk_cache/very_simple/very_simple_backend_impl.h',
+ 'disk_cache/very_simple/very_simple_disk_format.h',
+ 'disk_cache/very_simple/very_simple_entry_impl.cc',
+ 'disk_cache/very_simple/very_simple_entry_impl.h',
+ 'disk_cache/very_simple/very_simple_synchronous_entry.cc',
+ 'disk_cache/very_simple/very_simple_synchronous_entry.h',
'disk_cache/flash/format.h',
'disk_cache/flash/log_store.cc',
'disk_cache/flash/log_store.h',
@@ -1029,6 +1038,21 @@
'dns/dns_client.cc',
],
}],
+ ['use_very_simple_backend==1', {
+ 'defines': [
+ 'USE_VERY_SIMPLE_BACKEND',
+ ]
+ }, { # else
+ 'sources!': [
rvargas (doing something else) 2013/02/06 03:28:40 why remove these files?
gavinp 2013/02/08 23:27:21 I copied the pattern from what our custom DNS reso
rvargas (doing something else) 2013/02/13 01:48:46 I still think this is not the right thing to do...
+ 'disk_cache/very_simple/very_simple_backend_impl.cc',
pasko-google - do not use 2013/02/05 21:20:33 I prefer runtime command-line flag because: 1. no
+ 'disk_cache/very_simple/very_simple_backend_impl.h',
+ 'disk_cache/very_simple/very_simple_disk_format.h',
+ 'disk_cache/very_simple/very_simple_entry_impl.cc',
+ 'disk_cache/very_simple/very_simple_entry_impl.h',
+ 'disk_cache/very_simple/very_simple_synchronous_entry.cc',
+ 'disk_cache/very_simple/very_simple_synchronous_entry.h',
+ ],
+ }],
['use_openssl==1', {
'sources!': [
'base/cert_database_nss.cc',

Powered by Google App Engine
This is Rietveld 408576698