OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'courgette_lib_sources': [ | 8 'courgette_lib_sources': [ |
9 'adjustment_method.cc', | 9 'adjustment_method.cc', |
10 'adjustment_method_2.cc', | 10 'adjustment_method_2.cc', |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 '../base/base.gyp:base_nacl_win64', | 196 '../base/base.gyp:base_nacl_win64', |
197 ], | 197 ], |
198 'configurations': { | 198 'configurations': { |
199 'Common_Base': { | 199 'Common_Base': { |
200 'msvs_target_platform': 'x64', | 200 'msvs_target_platform': 'x64', |
201 }, | 201 }, |
202 }, | 202 }, |
203 }, | 203 }, |
204 ], | 204 ], |
205 }], | 205 }], |
| 206 # The build infrastructure needs courgette to be named courgette64. |
| 207 ['OS=="win" and target_arch=="x64"', { |
| 208 'targets': [ |
| 209 { |
| 210 'target_name': 'courgette64', |
| 211 'type': 'none', |
| 212 'dependencies': [ |
| 213 'courgette', |
| 214 ], |
| 215 'actions': [{ |
| 216 'action_name': 'courgette64', |
| 217 'inputs': [ |
| 218 '<(PRODUCT_DIR)/courgette.exe', |
| 219 ], |
| 220 'outputs': [ |
| 221 '<(PRODUCT_DIR)/courgette64.exe', |
| 222 ], |
| 223 'action': [ |
| 224 'python', |
| 225 '../build/cp.py', |
| 226 '<@(_inputs)', |
| 227 '<@(_outputs)' |
| 228 ], |
| 229 }], |
| 230 }, |
| 231 ], |
| 232 }], |
206 ], | 233 ], |
207 } | 234 } |
OLD | NEW |