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

Unified Diff: net/net.gyp

Issue 381073002: Move sqlite_channel_id_store from chrome/browser/net to net/extras. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implemented QuotaPolicyChannelIDStore, added unit tests. Created 6 years, 5 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 c7c2c9458723077e26985402567f553ac812660e..d865511f9b678e0bf6d5ea35fd6d011a7a1999ef 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -549,6 +549,7 @@
'http_server',
'net',
'net_derived_sources',
+ 'net_extras',
'net_test_support',
'quic_tools',
],
@@ -1050,6 +1051,19 @@
'includes': [ '../build/grit_target.gypi' ],
},
{
+ 'target_name': 'net_extras',
+ 'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../sql/sql.gyp:sql',
+ 'net',
+ ],
+ 'sources': [
+ '<@(net_extras_sources)',
+ ],
+ },
+ {
'target_name': 'http_server',
'type': 'static_library',
'variables': { 'enable_wexit_time_destructors': 1, },

Powered by Google App Engine
This is Rietveld 408576698