diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-30 00:51:16 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-30 00:51:16 +0000 |
commit | c01ec9515d1892e2a62d3e4423a2bb37ac79e551 (patch) | |
tree | e5906c772e92e04e3b333716b78a4b43d185c7f6 /build | |
parent | 70d56be631ab6616cd7661468df6ba91c5821193 (diff) | |
download | chromium_src-c01ec9515d1892e2a62d3e4423a2bb37ac79e551.zip chromium_src-c01ec9515d1892e2a62d3e4423a2bb37ac79e551.tar.gz chromium_src-c01ec9515d1892e2a62d3e4423a2bb37ac79e551.tar.bz2 |
Re-land the password store work from bug 8205, with changes that should fix bug 12479. The Linux pieces are still disabled, however.
BUG=8205
TEST=Password autofill should continue to work on Windows.
Review URL: http://codereview.chromium.org/114057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17273 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-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)', +# ], +# }, +# }, ], } |