OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |