Chromium Code Reviews| Index: sandbox/win/BUILD.gn |
| diff --git a/sandbox/win/BUILD.gn b/sandbox/win/BUILD.gn |
| index 21828ad0da9db49d4351727e8f054f14892d8c18..c9169979cdc8c9b64bdca29f3f5be374f8f033fb 100644 |
| --- a/sandbox/win/BUILD.gn |
| +++ b/sandbox/win/BUILD.gn |
| @@ -218,11 +218,28 @@ test("sbox_integration_tests") { |
| deps = [ |
| ":sandbox", |
| + ":sbox_integration_test_hook_dll", |
| + ":sbox_integration_test_win_proc", |
| "//base/test:test_support", |
| "//testing/gtest", |
| ] |
| } |
| +shared_library("sbox_integration_test_hook_dll") { |
|
Will Harris
2016/04/04 00:15:08
loadable_module
penny
2016/04/11 22:11:58
Done.
Do you know what the difference between the
Will Harris
2016/04/12 19:39:12
loadable_module makes a DLL
shared_library makes
penny
2016/04/13 22:52:27
TIL. Very useful information. Thanks for clarify
|
| + sources = [ |
| + "tests/integration_tests/hooking_dll.cc", |
| + ] |
| +} |
| + |
| +executable("sbox_integration_test_win_proc") { |
| + sources = [ |
| + "tests/integration_tests/hooking_win_proc.cc", |
| + ] |
| + |
| + configs -= [ "//build/config/win:console" ] |
| + configs += [ "//build/config/win:windowed" ] |
| +} |
| + |
| test("sbox_validation_tests") { |
| sources = [ |
| "tests/common/controller.cc", |