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

Unified Diff: components/cookie_config.gypi

Issue 1405463006: Componentize CookieOSCryptoDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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: components/cookie_config.gypi
diff --git a/chrome/chrome_child.gypi b/components/cookie_config.gypi
similarity index 64%
copy from chrome/chrome_child.gypi
copy to components/cookie_config.gypi
index 6464a39177c64ad13a749213165e50411d73d455..f8e2b4032b7fb1016ed17e49411d6c2ddec8b982 100644
--- a/chrome/chrome_child.gypi
+++ b/components/cookie_config.gypi
@@ -5,20 +5,21 @@
{
'targets': [
{
- 'target_name': 'child',
+ # GN version: //components/cookie_config
+ 'target_name': 'cookie_config',
'type': 'static_library',
- 'variables': { 'enable_wexit_time_destructors': 1, },
'dependencies': [
'../base/base.gyp:base',
droger 2015/10/14 16:04:38 add '../net/net.gyp:net',
Abhishek 2015/10/15 08:46:03 Done.
- '../content/content.gyp:content_child',
+ 'os_crypt',
droger 2015/10/14 16:04:38 indentation
Abhishek 2015/10/15 08:46:03 Done.
],
'include_dirs': [
'..',
],
'sources': [
- 'child/pdf_child_init.cc',
- 'child/pdf_child_init.h',
+ 'cookie_config/cookie_store_util.cc',
+ 'cookie_config/cookie_store_util.h',
],
},
],
}
+

Powered by Google App Engine
This is Rietveld 408576698