Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2301)

Unified Diff: build/all.gyp

Issue 113152: Add a simple dmg script to the mac build dir to build a dmg out of the app.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/mac/build_app_dmg » ('j') | build/mac/build_app_dmg » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/all.gyp
===================================================================
--- build/all.gyp (revision 15636)
+++ build/all.gyp (working copy)
@@ -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',
+ ],
+ },
],
}],
],
« no previous file with comments | « no previous file | build/mac/build_app_dmg » ('j') | build/mac/build_app_dmg » ('J')

Powered by Google App Engine
This is Rietveld 408576698