| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'chromium_code': 1, |
| 8 'nppversion': '<!(python ../../plugin/version_info.py --commaversion)', |
| 9 'dotnppversion': '<!(python ../../plugin/version_info.py --version)', |
| 10 |
| 11 # We don't actually want the extras version to update by itself; |
| 12 # it should change only when we actually add something to the |
| 13 # installer or change the d3dx9 version. This version is |
| 14 # therefore independent of the o3d plugin and sdk versions. |
| 15 'extrasversion': '0,1,1,0', |
| 16 'dotextrasversion': '0.1.1.0', |
| 17 }, |
| 18 'includes': [ |
| 19 '../../build/common.gypi', |
| 20 ], |
| 21 'targets': [ |
| 22 { |
| 23 'target_name': 'installer', |
| 24 'type': 'none', |
| 25 'dependencies': [ |
| 26 '../../converter/converter.gyp:o3dConverter', |
| 27 '../../breakpad/breakpad.gyp:reporter', |
| 28 '../../google_update/google_update.gyp:getextras', |
| 29 '../../documentation/documentation.gyp:*', |
| 30 '../../plugin/plugin.gyp:npo3dautoplugin', |
| 31 '../../samples/samples.gyp:samples', |
| 32 ], |
| 33 }, |
| 34 ], |
| 35 } |
| OLD | NEW |