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

Side by Side Diff: installer/mac/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 | « installer/installer.gyp ('k') | installer/mac/make_disk_image.sh » ('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 'nppversion': '<!(python ../../plugin/version_info.py --commaversion)', 8 'nppversion': '<!(python ../../plugin/version_info.py --commaversion)',
9 'dotnppversion': '<!(python ../../plugin/version_info.py --version)', 9 'dotnppversion': '<!(python ../../plugin/version_info.py --version)',
10 10
(...skipping 11 matching lines...) Expand all
22 { 22 {
23 'target_name': 'installer', 23 'target_name': 'installer',
24 'type': 'none', 24 'type': 'none',
25 'dependencies': [ 25 'dependencies': [
26 '../../converter/converter.gyp:o3dConverter', 26 '../../converter/converter.gyp:o3dConverter',
27 '../../breakpad/breakpad.gyp:reporter', 27 '../../breakpad/breakpad.gyp:reporter',
28 '../../documentation/documentation.gyp:*', 28 '../../documentation/documentation.gyp:*',
29 '../../plugin/plugin.gyp:npo3dautoplugin', 29 '../../plugin/plugin.gyp:npo3dautoplugin',
30 '../../samples/samples.gyp:samples', 30 '../../samples/samples.gyp:samples',
31 ], 31 ],
32 'postbuilds': [
33 {
34 'variables': {
35 'installer_script_path': './make_installer.sh',
36 },
37 'postbuild_name': 'Make Installer',
38 'action': ['<(installer_script_path)', '<(dotnppversion)',],
39 },
40 ],
41 },
42 {
43 'target_name': 'disk_image',
44 'type': 'none',
45 'dependencies': [
46 'installer',
47 ],
48 'postbuilds': [
49 {
50 'variables': {
51 'disk_image_script_path': './make_disk_image.sh',
52 },
53 'postbuild_name': 'Make Disk Image',
54 'action': ['<(disk_image_script_path)', '<(dotnppversion)',],
55 },
56 ],
32 }, 57 },
33 ], 58 ],
34 } 59 }
OLDNEW
« no previous file with comments | « installer/installer.gyp ('k') | installer/mac/make_disk_image.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698