OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'sandbox_windows_target': 0, | 8 'sandbox_windows_target': 0, |
9 'target_arch%': 'ia32', | 9 'target_arch%': 'ia32', |
10 }, | 10 }, |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 '../testing/gtest.gyp:gtest', | 176 '../testing/gtest.gyp:gtest', |
177 '../base/base.gyp:base', | 177 '../base/base.gyp:base', |
178 '../base/base.gyp:base_static', | 178 '../base/base.gyp:base_static', |
179 ], | 179 ], |
180 'export_dependent_settings': [ | 180 'export_dependent_settings': [ |
181 '../base/base.gyp:base', | 181 '../base/base.gyp:base', |
182 ], | 182 ], |
183 'include_dirs': [ | 183 'include_dirs': [ |
184 '../..', | 184 '../..', |
185 ], | 185 ], |
186 'copies': [ | |
187 { | |
188 'destination': '<(PRODUCT_DIR)', | |
189 'files': [ | |
190 'wow_helper/wow_helper.exe', | |
191 'wow_helper/wow_helper.pdb', | |
192 ], | |
193 }, | |
194 ], | |
195 'direct_dependent_settings': { | 186 'direct_dependent_settings': { |
196 'include_dirs': [ | 187 'include_dirs': [ |
197 'src', | 188 'src', |
198 '../..', | 189 '../..', |
199 ], | 190 ], |
200 }, | 191 }, |
| 192 'target_conditions': [ |
| 193 ['target_arch=="ia32"', { |
| 194 'copies': [ |
| 195 { |
| 196 'destination': '<(PRODUCT_DIR)', |
| 197 'files': [ |
| 198 'wow_helper/wow_helper.exe', |
| 199 'wow_helper/wow_helper.pdb', |
| 200 ], |
| 201 }, |
| 202 ], |
| 203 }], |
| 204 ], |
201 }, | 205 }, |
202 { | 206 { |
203 'target_name': 'sbox_integration_tests', | 207 'target_name': 'sbox_integration_tests', |
204 'type': 'executable', | 208 'type': 'executable', |
205 'dependencies': [ | 209 'dependencies': [ |
206 'sandbox', | 210 'sandbox', |
207 '../testing/gtest.gyp:gtest', | 211 '../testing/gtest.gyp:gtest', |
208 ], | 212 ], |
209 'sources': [ | 213 'sources': [ |
210 'src/app_container_test.cc', | 214 'src/app_container_test.cc', |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 ], | 355 ], |
352 }, | 356 }, |
353 'defines': [ | 357 'defines': [ |
354 '<@(nacl_win64_defines)', | 358 '<@(nacl_win64_defines)', |
355 ] | 359 ] |
356 }, | 360 }, |
357 ], | 361 ], |
358 }], | 362 }], |
359 ], | 363 ], |
360 } | 364 } |
OLD | NEW |