diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-22 07:11:50 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-22 07:11:50 +0000 |
commit | 2cfd7c1ab12bfd1eef7f6569fa5ffba37d6048ad (patch) | |
tree | e17312abe20f271c0177be27c3438a499facb115 /chrome | |
parent | 660a6866223aed7f53e1d7f13cbfe75c2327a245 (diff) | |
download | chromium_src-2cfd7c1ab12bfd1eef7f6569fa5ffba37d6048ad.zip chromium_src-2cfd7c1ab12bfd1eef7f6569fa5ffba37d6048ad.tar.gz chromium_src-2cfd7c1ab12bfd1eef7f6569fa5ffba37d6048ad.tar.bz2 |
On Windows, add a 'pull_in_all' target so the gyp-generated chrome.sln
will mimic the current behavior of the checked-in chrome.sln: building
all targets, like the buildbots (and everyone else) expect.
We'll remove this as part of converting the buildbots after the
basic conversion has landed.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/115688
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16733 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/chrome.gyp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index 4c616f0..71b4823 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -3347,6 +3347,45 @@ ['OS=="win"', { 'targets': [ { + # TODO(sgk): remove this when we change the buildbots to + # use the generated build\all.sln file to build the world. + 'target_name': 'pull_in_all', + 'type': 'none', + 'dependencies': [ + '../app/app.gyp:*', + '../base/base.gyp:*', + '../media/media.gyp:*', + '../net/net.gyp:*', + '../printing/printing.gyp:*', + '../sdch/sdch.gyp:*', + '../skia/skia.gyp:*', + '../testing/gtest.gyp:*', + '../third_party/bzip2/bzip2.gyp:*', + '../third_party/codesighs/codesighs.gyp:*', + '../third_party/ffmpeg/ffmpeg.gyp:*', + '../third_party/icu38/icu38.gyp:*', + '../third_party/libjpeg/libjpeg.gyp:*', + '../third_party/libpng/libpng.gyp:*', + '../third_party/libxml/libxml.gyp:*', + '../third_party/libxslt/libxslt.gyp:*', + '../third_party/lzma_sdk/lzma_sdk.gyp:*', + '../third_party/modp_b64/modp_b64.gyp:*', + '../third_party/npapi/npapi.gyp:*', + '../third_party/sqlite/sqlite.gyp:*', + '../third_party/zlib/zlib.gyp:*', + '../webkit/tools/test_shell/test_shell.gyp:*', + '../webkit/webkit.gyp:*', + + '../build/temp_gyp/googleurl.gyp:*', + + '../sandbox/sandbox.gyp:*', + '../courgette/courgette.gyp:*', + '../webkit/activex_shim/activex_shim.gyp:*', + '../webkit/activex_shim_dll/activex_shim_dll.gyp:*', + '../breakpad/breakpad.gyp:*', + ], + }, + { 'target_name': 'chrome_dll', 'type': 'shared_library', 'product_name': 'chrome', |