| Index: chrome_elf/BUILD.gn
|
| diff --git a/chrome_elf/BUILD.gn b/chrome_elf/BUILD.gn
|
| index 2a15a554843878d88fbb8ed7a26ab58d617e9ba8..64f5b7b32f3fc4bca74c5836e04223c14e6e355a 100644
|
| --- a/chrome_elf/BUILD.gn
|
| +++ b/chrome_elf/BUILD.gn
|
| @@ -33,6 +33,7 @@ shared_library("chrome_elf") {
|
| ":chrome_elf_manifest",
|
| ":lib",
|
| ":chrome_elf_resources",
|
| + "//build/config/sanitizers:deps",
|
| ]
|
| configs += [ "//build/config/win:windowed" ]
|
| configs -= [ "//build/config/win:console" ]
|
| @@ -100,6 +101,7 @@ if (is_component_build) {
|
| ]
|
| deps = [
|
| ":lib",
|
| + "//build/config/sanitizers:deps",
|
| ]
|
| configs += [ "//build/config/win:windowed" ]
|
| ldflags = [ "/DEF:" + rebase_path("chrome_redirects.def") ]
|
| @@ -122,12 +124,13 @@ source_set("dll_hash") {
|
| }
|
|
|
| executable("dll_hash_main") {
|
| - deps = [
|
| - ":dll_hash",
|
| - ]
|
| sources = [
|
| "dll_hash/dll_hash_main.cc",
|
| ]
|
| + deps = [
|
| + ":dll_hash",
|
| + "//build/config/sanitizers:deps",
|
| + ]
|
| }
|
|
|
| static_library("blacklist") {
|
| @@ -182,8 +185,9 @@ shared_library("blacklist_test_main_dll") {
|
| "blacklist/test/blacklist_test_main_dll.cc",
|
| ]
|
| deps = [
|
| - "//base",
|
| ":blacklist",
|
| + "//base",
|
| + "//build/config/sanitizers:deps",
|
| ]
|
| ldflags =
|
| [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_main_dll.def",
|
| @@ -196,6 +200,9 @@ shared_library("blacklist_test_dll_1") {
|
| ]
|
| ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_1.def",
|
| root_build_dir) ]
|
| + deps = [
|
| + "//build/config/sanitizers:deps",
|
| + ]
|
| }
|
|
|
| shared_library("blacklist_test_dll_2") {
|
| @@ -204,10 +211,16 @@ shared_library("blacklist_test_dll_2") {
|
| ]
|
| ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_2.def",
|
| root_build_dir) ]
|
| + deps = [
|
| + "//build/config/sanitizers:deps",
|
| + ]
|
| }
|
|
|
| shared_library("blacklist_test_dll_3") {
|
| sources = [
|
| "blacklist/test/blacklist_test_dll_3.cc",
|
| ]
|
| + deps = [
|
| + "//build/config/sanitizers:deps",
|
| + ]
|
| }
|
|
|