diff options
author | Scott Violet <sky@chromium.org> | 2014-08-25 17:59:25 -0700 |
---|---|---|
committer | Scott Violet <sky@chromium.org> | 2014-08-26 01:00:17 +0000 |
commit | f14ee704837172ff7a87833988d57fc35e0b599d (patch) | |
tree | 1b5e6769c406b8e7b1757b0415bed70749513e50 | |
parent | 6a94f2810ddee46acc69a38d2560eb99217934c4 (diff) | |
download | chromium_src-f14ee704837172ff7a87833988d57fc35e0b599d.zip chromium_src-f14ee704837172ff7a87833988d57fc35e0b599d.tar.gz chromium_src-f14ee704837172ff7a87833988d57fc35e0b599d.tar.bz2 |
Makes sure chrome_run target is always present
Needed so that try bots can always depend upon a chrome_run target
existing. Without this it makes detection of whether chrome is going
to be built tricky (some times it'll be chrome, othertimes
chrome_run).
BUG=407419
TEST=none
R=jam@chromium.org
Review URL: https://codereview.chromium.org/507503003
Cr-Commit-Position: refs/heads/master@{#291818}
-rw-r--r-- | chrome/chrome_exe.gypi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/chrome_exe.gypi b/chrome/chrome_exe.gypi index 64a6dcd..8c08d9b 100644 --- a/chrome/chrome_exe.gypi +++ b/chrome/chrome_exe.gypi @@ -697,6 +697,16 @@ }], ], }, + ]}, { + # Used by bots so they can always depend on chrome_run target. + 'targets': [ + { + 'target_name': 'chrome_run', + 'type': 'none', + 'dependencies': [ + 'chrome', + ], + }, ], }], ], |