| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 'dependencies': [ | 171 'dependencies': [ |
| 172 '../base/base.gyp:base', | 172 '../base/base.gyp:base', |
| 173 '../base/base.gyp:base_static', | 173 '../base/base.gyp:base_static', |
| 174 ], | 174 ], |
| 175 'export_dependent_settings': [ | 175 'export_dependent_settings': [ |
| 176 '../base/base.gyp:base', | 176 '../base/base.gyp:base', |
| 177 ], | 177 ], |
| 178 'include_dirs': [ | 178 'include_dirs': [ |
| 179 '../..', | 179 '../..', |
| 180 ], | 180 ], |
| 181 'target_conditions': [ | |
| 182 ['target_arch=="ia32"', { | |
| 183 'copies': [ | |
| 184 { | |
| 185 'destination': '<(PRODUCT_DIR)', | |
| 186 'files': [ | |
| 187 'wow_helper/wow_helper.exe', | |
| 188 'wow_helper/wow_helper.pdb', | |
| 189 ], | |
| 190 }, | |
| 191 ], | |
| 192 }], | |
| 193 ], | |
| 194 }, | 181 }, |
| 195 { | 182 { |
| 196 'target_name': 'sbox_integration_tests', | 183 'target_name': 'sbox_integration_tests', |
| 197 'type': 'executable', | 184 'type': 'executable', |
| 198 'dependencies': [ | 185 'dependencies': [ |
| 199 'sandbox', | 186 'sandbox', |
| 200 'sbox_integration_test_hook_dll', | 187 'sbox_integration_test_hook_dll', |
| 201 'sbox_integration_test_win_proc', | 188 'sbox_integration_test_win_proc', |
| 202 '../base/base.gyp:test_support_base', | 189 '../base/base.gyp:test_support_base', |
| 203 '../testing/gtest.gyp:gtest', | 190 '../testing/gtest.gyp:gtest', |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 '../../build/isolate.gypi', | 410 '../../build/isolate.gypi', |
| 424 ], | 411 ], |
| 425 'sources': [ | 412 'sources': [ |
| 426 '../sbox_validation_tests.isolate', | 413 '../sbox_validation_tests.isolate', |
| 427 ], | 414 ], |
| 428 }, | 415 }, |
| 429 ], | 416 ], |
| 430 }], | 417 }], |
| 431 ], | 418 ], |
| 432 } | 419 } |
| OLD | NEW |