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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/mac/build_app_dmg » ('j') | build/mac/build_app_dmg » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['OS!="win"', { 8 ['OS!="win"', {
9 'all_gyps%': 1, 9 'all_gyps%': 1,
10 },{ # else OS=="win" 10 },{ # else OS=="win"
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 ['all_gyps', { 72 ['all_gyps', {
73 'dependencies': [ 73 'dependencies': [
74 '../chrome/chrome.gyp:*', 74 '../chrome/chrome.gyp:*',
75 ], 75 ],
76 }], 76 }],
77 ], 77 ],
78 }, 78 },
79 ], 79 ],
80 'conditions': [ 80 'conditions': [
81 ['OS=="mac"', { 81 ['OS=="mac"', {
82 # Target to build everything needed for layout tests to cut down
83 # on what the layout test bots have to build.
84 'targets': [ 82 'targets': [
85 { 83 {
84 # Target to build everything needed for layout tests to cut down
85 # on what the layout test bots have to build.
86 'target_name': 'build_for_layout_tests', 86 'target_name': 'build_for_layout_tests',
87 'type': 'none', 87 'type': 'none',
88 'dependencies': [ 88 'dependencies': [
89 '../chrome/chrome.gyp:image_diff', 89 '../chrome/chrome.gyp:image_diff',
90 '../webkit/tools/test_shell/test_shell.gyp:test_shell', 90 '../webkit/tools/test_shell/test_shell.gyp:test_shell',
91 '../webkit/tools/test_shell/test_shell.gyp:test_shell_tests', 91 '../webkit/tools/test_shell/test_shell.gyp:test_shell_tests',
92 ], 92 ],
93 }, 93 },
94 {
95 # Target to build everything plus the dmg. We don't put the dmg
96 # in the All target because developer really don't need it.
97 'target_name': 'all_and_dmg',
98 'type': 'none',
99 'dependencies': [
100 'All',
101 '../chrome/chrome.gyp:build_app_dmg',
102 ],
103 },
94 ], 104 ],
95 }], 105 }],
96 ], 106 ],
97 } 107 }
OLDNEW
« 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