diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 22:00:41 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 22:00:41 +0000 |
commit | e69d33959a5b34c3796ffc55f187a073d92fd28f (patch) | |
tree | 6437de4b98dbd0e89e1e0e6a6431bd4842447c46 /build/linux/system.gyp | |
parent | d1d1f9f14a63c8b8a6b882c5e9bf5f67eeb3d574 (diff) | |
download | chromium_src-e69d33959a5b34c3796ffc55f187a073d92fd28f.zip chromium_src-e69d33959a5b34c3796ffc55f187a073d92fd28f.tar.gz chromium_src-e69d33959a5b34c3796ffc55f187a073d92fd28f.tar.bz2 |
Change PasswordStoreDefault to access the WebDataService from the UI thread only.
Enables the PasswordStore refactoring yet again (third time's the charm?).
BUG=12479
TEST=Password save/autofill should continue to work on Windows.
Review URL: http://codereview.chromium.org/118131
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17545 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/linux/system.gyp')
-rw-r--r-- | build/linux/system.gyp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/build/linux/system.gyp b/build/linux/system.gyp index a3e8cbc..68b52be 100644 --- a/build/linux/system.gyp +++ b/build/linux/system.gyp @@ -140,5 +140,42 @@ ], }, }, +# TODO(evanm): temporarily disabled while we figure out whether to depend +# on gnome-keyring etc. +# http://code.google.com/p/chromium/issues/detail?id=12351 +# { +# 'target_name': 'gnome-keyring', +# 'type': 'settings', +# 'direct_dependent_settings': { +# 'cflags': [ +# '<!@(pkg-config --cflags gnome-keyring-1)', +# ], +# }, +# 'link_settings': { +# 'ldflags': [ +# '<!@(pkg-config --libs-only-L --libs-only-other gnome-keyring-1)', +# ], +# 'libraries': [ +# '<!@(pkg-config --libs-only-l gnome-keyring-1)', +# ], +# }, +# }, +# { +# 'target_name': 'dbus-glib', +# 'type': 'settings', +# 'direct_dependent_settings': { +# 'cflags': [ +# '<!@(pkg-config --cflags dbus-glib-1)', +# ], +# }, +# 'link_settings': { +# 'ldflags': [ +# '<!@(pkg-config --libs-only-L --libs-only-other dbus-glib-1)', +# ], +# 'libraries': [ +# '<!@(pkg-config --libs-only-l dbus-glib-1)', +# ], +# }, +# }, ], } |