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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 }, | 198 }, |
199 ], | 199 ], |
200 }], | 200 }], |
201 ], | 201 ], |
202 }, | 202 }, |
203 { | 203 { |
204 'target_name': 'sbox_integration_tests', | 204 'target_name': 'sbox_integration_tests', |
205 'type': 'executable', | 205 'type': 'executable', |
206 'dependencies': [ | 206 'dependencies': [ |
207 'sandbox', | 207 'sandbox', |
| 208 'sbox_integration_test_hook_dll', |
| 209 'sbox_integration_test_win_proc', |
208 '../base/base.gyp:test_support_base', | 210 '../base/base.gyp:test_support_base', |
209 '../testing/gtest.gyp:gtest', | 211 '../testing/gtest.gyp:gtest', |
210 ], | 212 ], |
211 'sources': [ | 213 'sources': [ |
212 'src/address_sanitizer_test.cc', | 214 'src/address_sanitizer_test.cc', |
213 'src/app_container_test.cc', | 215 'src/app_container_test.cc', |
214 'src/file_policy_test.cc', | 216 'src/file_policy_test.cc', |
215 'src/handle_inheritance_test.cc', | 217 'src/handle_inheritance_test.cc', |
216 'src/handle_policy_test.cc', | 218 'src/handle_policy_test.cc', |
217 'tests/integration_tests/integration_tests_test.cc', | 219 'tests/integration_tests/integration_tests_test.cc', |
(...skipping 10 matching lines...) Expand all Loading... |
228 'src/sync_policy_test.h', | 230 'src/sync_policy_test.h', |
229 'src/unload_dll_test.cc', | 231 'src/unload_dll_test.cc', |
230 'tests/common/controller.cc', | 232 'tests/common/controller.cc', |
231 'tests/common/controller.h', | 233 'tests/common/controller.h', |
232 'tests/common/test_utils.cc', | 234 'tests/common/test_utils.cc', |
233 'tests/common/test_utils.h', | 235 'tests/common/test_utils.h', |
234 'tests/integration_tests/integration_tests.cc', | 236 'tests/integration_tests/integration_tests.cc', |
235 ], | 237 ], |
236 }, | 238 }, |
237 { | 239 { |
| 240 'target_name': 'sbox_integration_test_hook_dll', |
| 241 'type': 'shared_library', |
| 242 'dependencies': [ |
| 243 ], |
| 244 'sources': [ |
| 245 'tests/integration_tests/hooking_dll.cc', |
| 246 ], |
| 247 }, |
| 248 { |
| 249 'target_name': 'sbox_integration_test_win_proc', |
| 250 'type': 'executable', |
| 251 'dependencies': [ |
| 252 ], |
| 253 'sources': [ |
| 254 'tests/integration_tests/hooking_win_proc.cc', |
| 255 ], |
| 256 'msvs_settings': { |
| 257 'VCLinkerTool': { |
| 258 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 259 }, |
| 260 }, |
| 261 }, |
| 262 { |
238 'target_name': 'sbox_validation_tests', | 263 'target_name': 'sbox_validation_tests', |
239 'type': 'executable', | 264 'type': 'executable', |
240 'dependencies': [ | 265 'dependencies': [ |
241 'sandbox', | 266 'sandbox', |
242 '../base/base.gyp:test_support_base', | 267 '../base/base.gyp:test_support_base', |
243 '../testing/gtest.gyp:gtest', | 268 '../testing/gtest.gyp:gtest', |
244 ], | 269 ], |
245 'sources': [ | 270 'sources': [ |
246 'tests/common/controller.cc', | 271 'tests/common/controller.cc', |
247 'tests/common/controller.h', | 272 'tests/common/controller.h', |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 '../../build/isolate.gypi', | 419 '../../build/isolate.gypi', |
395 ], | 420 ], |
396 'sources': [ | 421 'sources': [ |
397 '../sbox_validation_tests.isolate', | 422 '../sbox_validation_tests.isolate', |
398 ], | 423 ], |
399 }, | 424 }, |
400 ], | 425 ], |
401 }], | 426 }], |
402 ], | 427 ], |
403 } | 428 } |
OLD | NEW |