diff options
author | craig.schlenter@chromium.org <craig.schlenter@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-08 18:55:11 +0000 |
---|---|---|
committer | craig.schlenter@chromium.org <craig.schlenter@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-08 18:55:11 +0000 |
commit | 70a4ec5fb0885b27c1cfdef0132eeb2c0fc7dc99 (patch) | |
tree | aaa3382002b8ff51b9e9ec2486a1f974f8b3faff /chrome | |
parent | 4576e9f095e767e8b78861e2cdde6d6730ad5267 (diff) | |
download | chromium_src-70a4ec5fb0885b27c1cfdef0132eeb2c0fc7dc99.zip chromium_src-70a4ec5fb0885b27c1cfdef0132eeb2c0fc7dc99.tar.gz chromium_src-70a4ec5fb0885b27c1cfdef0132eeb2c0fc7dc99.tar.bz2 |
chromeos/linux: fix for the shared build.
Errors:
out/Release/obj.target/chrome/libbrowser.so: undefined reference to
`BalloonCollectionImpl::Layout::InterBalloonMargin() const'
out/Release/obj.target/chrome/libbrowser.so: undefined reference to
`BalloonCollectionImpl::Layout::VerticalEdgeMargin() const'
out/Release/obj.target/chrome/libbrowser.so: undefined reference to
`BalloonCollectionImpl::MakeBalloon(Notification const&, Profile*)'
out/Release/obj.target/chrome/libbrowser.so: undefined reference to
`BalloonCollectionImpl::Layout::HorizontalEdgeMargin() const'
BUG=None
TEST=compile and out/Debug/chrome
Patch by Thiago Farina <thiago.farina@gmail.com>
Review URL: http://codereview.chromium.org/668218
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40915 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rwxr-xr-x | chrome/chrome_browser.gypi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/chrome_browser.gypi b/chrome/chrome_browser.gypi index 8419289..730f111 100755 --- a/chrome/chrome_browser.gypi +++ b/chrome/chrome_browser.gypi @@ -2845,8 +2845,9 @@ }], ['OS=="linux" and chromeos==1',{ 'sources/': [ - ['exclude', '^browser/notifications/balloon_collection_linux.cc'], + ['exclude', '^browser/notifications/balloon_collection.cc'], ['exclude', '^browser/notifications/balloon_collection_impl.h'], + ['exclude', '^browser/notifications/balloon_collection_linux.cc'], ], 'dependencies': [ '../third_party/protobuf2/protobuf.gyp:protobuf_lite', |