diff options
author | petermayo@chromium.org <petermayo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-13 17:08:57 +0000 |
---|---|---|
committer | petermayo@chromium.org <petermayo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-13 17:08:57 +0000 |
commit | b64562f07afac60d15109394295ba53a19b5deba (patch) | |
tree | 688ad81549ccbb43babe12ba685a2d1c06eb3983 /webkit/quota | |
parent | 52aef038f682a09347dc8e3ce0ca8e32cad22888 (diff) | |
download | chromium_src-b64562f07afac60d15109394295ba53a19b5deba.zip chromium_src-b64562f07afac60d15109394295ba53a19b5deba.tar.gz chromium_src-b64562f07afac60d15109394295ba53a19b5deba.tar.bz2 |
Add dependencies to webkit pieces.
libcompositor (.so) gets linked against libwebkit_fileapi (.a) and libwebkit_quota (.a), each of which is built with googleurl, but does not include it as a dependency, causing libcompositor (.so) to not include all of the symbols it requires.
R=kinuko@chromium.org
BUG=112626
TEST=Compiled chromeos with shared library on a buildbot like setup.
Review URL: http://codereview.chromium.org/9980022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132201 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/quota')
-rw-r--r-- | webkit/quota/webkit_quota.gypi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webkit/quota/webkit_quota.gypi b/webkit/quota/webkit_quota.gypi index ffd8a21..240516a 100644 --- a/webkit/quota/webkit_quota.gypi +++ b/webkit/quota/webkit_quota.gypi @@ -1,4 +1,4 @@ -# Copyright (c) 2011 The Chromium Authors. All rights reserved. +# Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -10,6 +10,7 @@ 'variables': { 'enable_wexit_time_destructors': 1, }, 'dependencies': [ '<(DEPTH)/base/base.gyp:base', + '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', '<(DEPTH)/net/net.gyp:net', '<(DEPTH)/sql/sql.gyp:sql', ], |