diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-05 23:29:32 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-05 23:29:32 +0000 |
commit | 9e84e4d6dfc0e266449ab042d6dc6d480a27ae88 (patch) | |
tree | 9c46030021bce85dfebe9b9d758f2f3b77d27b81 /remoting | |
parent | badb2f8f8f8171a7edf2489020473f0c20631979 (diff) | |
download | chromium_src-9e84e4d6dfc0e266449ab042d6dc6d480a27ae88.zip chromium_src-9e84e4d6dfc0e266449ab042d6dc6d480a27ae88.tar.gz chromium_src-9e84e4d6dfc0e266449ab042d6dc6d480a27ae88.tar.bz2 |
Fix js_unittest_rules.gypi dependenies
The gypi file assumes that v8_shell exists, but doesn't add
a dependency to build it. This works with some build systems,
but not with all.
To get the bots green, just add the dependency where it's needed
for now.
BUG=174433
Review URL: https://codereview.chromium.org/12208031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180820 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/remoting.gyp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp index 2e52e44..9994ad7 100644 --- a/remoting/remoting.gyp +++ b/remoting/remoting.gyp @@ -2374,6 +2374,7 @@ 'dependencies': [ '../chrome/common_constants.gyp:common_constants', '../v8/tools/gyp/v8.gyp:v8', + '../v8/tools/gyp/v8.gyp:v8_shell', ], 'sources': [ '../chrome/test/base/v8_unit_test.cc', |