Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8056)

Unified Diff: chrome_elf/BUILD.gn

Issue 1656453002: [Chrome ELF] Early browser security support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Only run the new browser security test on >= Win8. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome_elf/chrome_elf.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_elf/BUILD.gn
diff --git a/chrome_elf/BUILD.gn b/chrome_elf/BUILD.gn
index 87c14a51470ced6e4708dd862e4011e17494d151..b11085621a95def88d6284a857399e8d8d44457a 100644
--- a/chrome_elf/BUILD.gn
+++ b/chrome_elf/BUILD.gn
@@ -45,6 +45,7 @@ shared_library("chrome_elf") {
":breakpad",
":chrome_elf_manifest",
":chrome_elf_resources",
+ ":chrome_elf_security",
":hook_util",
"//base",
"//build/config/sanitizers:deps",
@@ -78,6 +79,17 @@ shared_library("chrome_elf") {
## source sets
##------------------------------------------------------------------------------
+source_set("chrome_elf_security") {
+ sources = [
+ "chrome_elf_security.cc",
+ "chrome_elf_security.h",
+ ]
+ deps = [
+ ":constants",
+ "//chrome_elf/nt_registry:nt_registry",
+ ]
+}
+
source_set("constants") {
sources = [
"chrome_elf_constants.cc",
@@ -172,6 +184,7 @@ test("chrome_elf_unittests") {
deps = [
":blacklist",
":blacklist_test_main_dll",
+ ":chrome_elf_security",
":constants",
":hook_util",
"//base",
« no previous file with comments | « no previous file | chrome_elf/chrome_elf.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698