From ad3016e12262917f474f0f511c8ac1a1c3e91935 Mon Sep 17 00:00:00 2001 From: "thomasvl@chromium.org" Date: Fri, 8 May 2009 20:24:08 +0000 Subject: 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 --- build/all.gyp | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'build/all.gyp') 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', + ], + }, ], }], ], -- cgit v1.1