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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 ], | 169 ], |
170 }, | 170 }, |
171 ], | 171 ], |
172 'conditions': [ | 172 'conditions': [ |
173 ['OS=="win" and target_arch=="ia32"', { | 173 ['OS=="win" and target_arch=="ia32"', { |
174 'targets': [ | 174 'targets': [ |
175 { | 175 { |
176 'target_name': 'courgette_lib64', | 176 'target_name': 'courgette_lib64', |
177 'type': 'static_library', | 177 'type': 'static_library', |
178 'dependencies': [ | 178 'dependencies': [ |
179 '../base/base.gyp:base_nacl_win64', | 179 '../base/base.gyp:base_win64', |
180 '../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk64', | 180 '../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk64', |
181 ], | 181 ], |
182 'sources': [ | 182 'sources': [ |
183 '<@(courgette_lib_sources)', | 183 '<@(courgette_lib_sources)', |
184 ], | 184 ], |
185 'configurations': { | 185 'configurations': { |
186 'Common_Base': { | 186 'Common_Base': { |
187 'msvs_target_platform': 'x64', | 187 'msvs_target_platform': 'x64', |
188 }, | 188 }, |
189 }, | 189 }, |
190 }, | 190 }, |
191 { | 191 { |
192 'target_name': 'courgette64', | 192 'target_name': 'courgette64', |
193 'type': 'executable', | 193 'type': 'executable', |
194 'sources': [ | 194 'sources': [ |
195 'courgette_tool.cc', | 195 'courgette_tool.cc', |
196 ], | 196 ], |
197 'dependencies': [ | 197 'dependencies': [ |
198 'courgette_lib64', | 198 'courgette_lib64', |
199 '../base/base.gyp:base_nacl_win64', | 199 '../base/base.gyp:base_win64', |
200 ], | 200 ], |
201 'configurations': { | 201 'configurations': { |
202 'Common_Base': { | 202 'Common_Base': { |
203 'msvs_target_platform': 'x64', | 203 'msvs_target_platform': 'x64', |
204 }, | 204 }, |
205 }, | 205 }, |
206 }, | 206 }, |
207 ], | 207 ], |
208 }], | 208 }], |
209 # The build infrastructure needs courgette to be named courgette64. | 209 # The build infrastructure needs courgette to be named courgette64. |
(...skipping 18 matching lines...) Expand all Loading... |
228 '../build/cp.py', | 228 '../build/cp.py', |
229 '<@(_inputs)', | 229 '<@(_inputs)', |
230 '<@(_outputs)' | 230 '<@(_outputs)' |
231 ], | 231 ], |
232 }], | 232 }], |
233 }, | 233 }, |
234 ], | 234 ], |
235 }], | 235 }], |
236 ], | 236 ], |
237 } | 237 } |
OLD | NEW |