| 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 }, | 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 } |
| OLD | NEW |