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

Unified Diff: chrome/chrome_exe.gypi

Issue 8509038: Linux: split GNOME Keyring integration into a separate process. Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: everything works Created 9 years, 1 month 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: chrome/chrome_exe.gypi
===================================================================
--- chrome/chrome_exe.gypi (revision 108068)
+++ chrome/chrome_exe.gypi (working copy)
@@ -553,5 +553,26 @@
},
],
}],
+ ['OS == "linux" and use_gnome_keyring == 1', {
+ 'targets': [
+ {
+ 'target_name': 'chrome-keyring-proxy',
+ 'type': 'executable',
+ 'sources': [
+ 'browser/password_manager/proxy/chrome_keyring_proxy.cc',
+ 'browser/password_manager/proxy/chrome_keyring_proxy_main.cc',
+ 'browser/password_manager/proxy/keyring_loader.cc',
+ 'browser/password_manager/proxy/message_reader.cc',
+ ],
+ 'dependencies': [
+ '../build/linux/system.gyp:gnome_keyring',
+ '../build/linux/system.gyp:gtk',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ },
+ ],
+ }],
],
}

Powered by Google App Engine
This is Rietveld 408576698