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

Side by Side Diff: installer/installer.gyp

Issue 195023: Add scripts to automatically build installer and disk image in GYP build. ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 3 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 | installer/mac/installer.gyp » ('j') | no next file with comments »
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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'installer', 14 'target_name': 'installer',
15 'type': 'none', 15 'type': 'none',
16 'conditions': [ 16 'conditions': [
17 ['OS=="win"', 17 ['OS=="win"',
18 { 18 {
19 'dependencies': [ 19 'dependencies': [
20 'win/installer.gyp:installer', 20 'win/installer.gyp:installer',
21 'win/installer.gyp:extras_installer', 21 'win/installer.gyp:extras_installer',
22 ], 22 ],
23 }, 23 },
24 ], 24 ],
25 ['OS=="mac"', 25 ['OS=="mac"',
26 { 26 {
27 'dependencies': [ 27 'dependencies': [
28 'mac/installer.gyp:installer', 28 'mac/installer.gyp:disk_image',
29 ], 29 ],
30 }, 30 },
31 ], 31 ],
32 ['OS=="unix"', 32 ['OS=="unix"',
33 { 33 {
34 'dependencies': [ 34 'dependencies': [
35 'linux/installer.gyp:installer', 35 'linux/installer.gyp:installer',
36 ], 36 ],
37 }, 37 },
38 ], 38 ],
39 ], 39 ],
40 }, 40 },
41 ], 41 ],
42 } 42 }
OLDNEW
« no previous file with comments | « no previous file | installer/mac/installer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698