Chromium Code Reviews

Unified Diff: sandbox/win/BUILD.gn

Issue 1835003003: [Windows Sandbox] MITIGATION_EXTENSION_POINT_DISABLE support for children. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GN fix (thanks Bruce) Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | sandbox/win/sandbox_win.gypi » ('j') | sandbox/win/src/process_mitigations.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
« no previous file with comments | « no previous file | sandbox/win/sandbox_win.gypi » ('j') | sandbox/win/src/process_mitigations.cc » ('J')

Powered by Google App Engine