diff options
author | gregoryd@google.com <gregoryd@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-11 19:31:18 +0000 |
---|---|---|
committer | gregoryd@google.com <gregoryd@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-11 19:31:18 +0000 |
commit | 2f7aff273b0a1357e79d99e2f31ede1f702d8783 (patch) | |
tree | b6225e24dd0c58ce7f4f79a59dd5060021b5593e /tools | |
parent | 81b0ab1f1bc9c3a60dfba1906f586660c8b48bdb (diff) | |
download | chromium_src-2f7aff273b0a1357e79d99e2f31ede1f702d8783.zip chromium_src-2f7aff273b0a1357e79d99e2f31ede1f702d8783.tar.gz chromium_src-2f7aff273b0a1357e79d99e2f31ede1f702d8783.tar.bz2 |
Fix memory_watcher dependencies
The use of * in the dependencies makes memory_watcher depend on all targets in app.gyp, both 32-bit and 64-bit. Clearly, 32-bit targets should not depend on 64-bit targets.
BUG=none
TEST=build memory_watcher on Windows
Review URL: http://codereview.chromium.org/486024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34365 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/memory_watcher/memory_watcher.gyp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/memory_watcher/memory_watcher.gyp b/tools/memory_watcher/memory_watcher.gyp index ffb5e19..c3358ea 100644 --- a/tools/memory_watcher/memory_watcher.gyp +++ b/tools/memory_watcher/memory_watcher.gyp @@ -9,7 +9,7 @@ 'type': 'shared_library', 'msvs_guid': '3BD81303-4E14-4559-AA69-B30C3BAB08DD', 'dependencies': [ - '../../app/app.gyp:*', + '../../app/app.gyp:app_base', '../../base/base.gyp:base', ], 'defines': [ |