diff options
author | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-08 20:24:08 +0000 |
---|---|---|
committer | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-08 20:24:08 +0000 |
commit | ad3016e12262917f474f0f511c8ac1a1c3e91935 (patch) | |
tree | 2460afdd4aff58385d153fab6b65fb1460573780 /build/all.gyp | |
parent | 0800c6694b82aebb27f8021acc759e04dfe2542f (diff) | |
download | chromium_src-ad3016e12262917f474f0f511c8ac1a1c3e91935.zip chromium_src-ad3016e12262917f474f0f511c8ac1a1c3e91935.tar.gz chromium_src-ad3016e12262917f474f0f511c8ac1a1c3e91935.tar.bz2 |
Add a simple dmg script to the mac build dir to build a dmg out of the app.
Add a target to build a dmg out of the app.
Add a target to all that will build everything and the dmg (since we don't include the dmg in all since developers really don't need to wait for that).
Review URL: http://codereview.chromium.org/113152
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15672 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/all.gyp')
-rw-r--r-- | build/all.gyp | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/build/all.gyp b/build/all.gyp index 2aad4a3..a2ef584 100644 --- a/build/all.gyp +++ b/build/all.gyp @@ -79,10 +79,10 @@ ], 'conditions': [ ['OS=="mac"', { - # Target to build everything needed for layout tests to cut down - # on what the layout test bots have to build. 'targets': [ { + # Target to build everything needed for layout tests to cut down + # on what the layout test bots have to build. 'target_name': 'build_for_layout_tests', 'type': 'none', 'dependencies': [ @@ -91,6 +91,16 @@ '../webkit/tools/test_shell/test_shell.gyp:test_shell_tests', ], }, + { + # Target to build everything plus the dmg. We don't put the dmg + # in the All target because developer really don't need it. + 'target_name': 'all_and_dmg', + 'type': 'none', + 'dependencies': [ + 'All', + '../chrome/chrome.gyp:build_app_dmg', + ], + }, ], }], ], |