| Index: sandbox/win/sandbox_win.gypi
|
| diff --git a/sandbox/win/sandbox_win.gypi b/sandbox/win/sandbox_win.gypi
|
| index eeac488c16f3fae4a56f867b90b1cd16dfae640b..6d78cb3cac39ec941c47224a18323a84776a15aa 100644
|
| --- a/sandbox/win/sandbox_win.gypi
|
| +++ b/sandbox/win/sandbox_win.gypi
|
| @@ -203,6 +203,8 @@
|
| 'type': 'executable',
|
| 'dependencies': [
|
| 'sandbox',
|
| + 'sbox_integration_test_hook_dll',
|
| + 'sbox_integration_test_win_proc',
|
| '../base/base.gyp:test_support_base',
|
| '../testing/gtest.gyp:gtest',
|
| ],
|
| @@ -231,9 +233,35 @@
|
| 'tests/common/test_utils.cc',
|
| 'tests/common/test_utils.h',
|
| 'tests/integration_tests/integration_tests.cc',
|
| + 'tests/integration_tests/integration_tests_common.h',
|
| ],
|
| },
|
| {
|
| + 'target_name': 'sbox_integration_test_hook_dll',
|
| + 'type': 'shared_library',
|
| + 'dependencies': [
|
| + ],
|
| + 'sources': [
|
| + 'tests/integration_tests/hooking_dll.cc',
|
| + 'tests/integration_tests/integration_tests_common.h',
|
| + ],
|
| + },
|
| + {
|
| + 'target_name': 'sbox_integration_test_win_proc',
|
| + 'type': 'executable',
|
| + 'dependencies': [
|
| + ],
|
| + 'sources': [
|
| + 'tests/integration_tests/hooking_win_proc.cc',
|
| + 'tests/integration_tests/integration_tests_common.h',
|
| + ],
|
| + 'msvs_settings': {
|
| + 'VCLinkerTool': {
|
| + 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
|
| + },
|
| + },
|
| + },
|
| + {
|
| 'target_name': 'sbox_validation_tests',
|
| 'type': 'executable',
|
| 'dependencies': [
|
|
|