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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 }, | 196 }, |
197 ], | 197 ], |
198 }], | 198 }], |
199 ], | 199 ], |
200 }, | 200 }, |
201 { | 201 { |
202 'target_name': 'sbox_integration_tests', | 202 'target_name': 'sbox_integration_tests', |
203 'type': 'executable', | 203 'type': 'executable', |
204 'dependencies': [ | 204 'dependencies': [ |
205 'sandbox', | 205 'sandbox', |
| 206 'sbox_integration_test_hook_dll', |
| 207 'sbox_integration_test_win_proc', |
206 '../base/base.gyp:test_support_base', | 208 '../base/base.gyp:test_support_base', |
207 '../testing/gtest.gyp:gtest', | 209 '../testing/gtest.gyp:gtest', |
208 ], | 210 ], |
209 'sources': [ | 211 'sources': [ |
210 'src/address_sanitizer_test.cc', | 212 'src/address_sanitizer_test.cc', |
211 'src/app_container_test.cc', | 213 'src/app_container_test.cc', |
212 'src/file_policy_test.cc', | 214 'src/file_policy_test.cc', |
213 'src/handle_inheritance_test.cc', | 215 'src/handle_inheritance_test.cc', |
214 'src/handle_policy_test.cc', | 216 'src/handle_policy_test.cc', |
215 'tests/integration_tests/integration_tests_test.cc', | 217 'tests/integration_tests/integration_tests_test.cc', |
216 'src/handle_closer_test.cc', | 218 'src/handle_closer_test.cc', |
217 'src/integrity_level_test.cc', | 219 'src/integrity_level_test.cc', |
218 'src/ipc_ping_test.cc', | 220 'src/ipc_ping_test.cc', |
219 'src/lpc_policy_test.cc', | 221 'src/lpc_policy_test.cc', |
220 'src/named_pipe_policy_test.cc', | 222 'src/named_pipe_policy_test.cc', |
221 'src/policy_target_test.cc', | 223 'src/policy_target_test.cc', |
222 'src/process_mitigations_test.cc', | 224 'src/process_mitigations_test.cc', |
223 'src/process_policy_test.cc', | 225 'src/process_policy_test.cc', |
224 'src/registry_policy_test.cc', | 226 'src/registry_policy_test.cc', |
225 'src/restricted_token_test.cc', | 227 'src/restricted_token_test.cc', |
226 'src/sync_policy_test.cc', | 228 'src/sync_policy_test.cc', |
227 'src/sync_policy_test.h', | 229 'src/sync_policy_test.h', |
228 'src/unload_dll_test.cc', | 230 'src/unload_dll_test.cc', |
229 'tests/common/controller.cc', | 231 'tests/common/controller.cc', |
230 'tests/common/controller.h', | 232 'tests/common/controller.h', |
231 'tests/common/test_utils.cc', | 233 'tests/common/test_utils.cc', |
232 'tests/common/test_utils.h', | 234 'tests/common/test_utils.h', |
233 'tests/integration_tests/integration_tests.cc', | 235 'tests/integration_tests/integration_tests.cc', |
| 236 'tests/integration_tests/integration_tests_common.h', |
234 ], | 237 ], |
235 }, | 238 }, |
236 { | 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 'tests/integration_tests/integration_tests_common.h', |
| 247 ], |
| 248 }, |
| 249 { |
| 250 'target_name': 'sbox_integration_test_win_proc', |
| 251 'type': 'executable', |
| 252 'dependencies': [ |
| 253 ], |
| 254 'sources': [ |
| 255 'tests/integration_tests/hooking_win_proc.cc', |
| 256 'tests/integration_tests/integration_tests_common.h', |
| 257 ], |
| 258 'msvs_settings': { |
| 259 'VCLinkerTool': { |
| 260 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 261 }, |
| 262 }, |
| 263 }, |
| 264 { |
237 'target_name': 'sbox_validation_tests', | 265 'target_name': 'sbox_validation_tests', |
238 'type': 'executable', | 266 'type': 'executable', |
239 'dependencies': [ | 267 'dependencies': [ |
240 'sandbox', | 268 'sandbox', |
241 '../base/base.gyp:test_support_base', | 269 '../base/base.gyp:test_support_base', |
242 '../testing/gtest.gyp:gtest', | 270 '../testing/gtest.gyp:gtest', |
243 ], | 271 ], |
244 'sources': [ | 272 'sources': [ |
245 'tests/common/controller.cc', | 273 'tests/common/controller.cc', |
246 'tests/common/controller.h', | 274 'tests/common/controller.h', |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 '../../build/isolate.gypi', | 425 '../../build/isolate.gypi', |
398 ], | 426 ], |
399 'sources': [ | 427 'sources': [ |
400 '../sbox_validation_tests.isolate', | 428 '../sbox_validation_tests.isolate', |
401 ], | 429 ], |
402 }, | 430 }, |
403 ], | 431 ], |
404 }], | 432 }], |
405 ], | 433 ], |
406 } | 434 } |
OLD | NEW |