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

Unified Diff: BUILD.gn

Issue 2894013003: Replace sanitizers:deps with exe_and_shlib_deps (v8) (Closed)
Patch Set: Rebase Created 3 years, 7 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 | test/cctest/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 611286dc3fe13237d278a94160aaa23c76a44d81..e13162ad4ac765cef1083b8c50226274bd3bda25 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -2662,7 +2662,7 @@ if (current_toolchain == v8_snapshot_toolchain) {
":v8_libbase",
":v8_libplatform",
":v8_nosnapshot",
- "//build/config/sanitizers:deps",
+ "//build/config:exe_and_shlib_deps",
"//build/win:default_exe_manifest",
]
}
@@ -2835,7 +2835,7 @@ v8_executable("d8") {
":v8",
":v8_libbase",
":v8_libplatform",
- "//build/config/sanitizers:deps",
+ "//build/config:exe_and_shlib_deps",
"//build/win:default_exe_manifest",
]
@@ -2880,7 +2880,7 @@ v8_executable("v8_hello_world") {
":v8",
":v8_libbase",
":v8_libplatform",
- "//build/config/sanitizers:deps",
+ "//build/config:exe_and_shlib_deps",
"//build/win:default_exe_manifest",
]
}
@@ -2901,7 +2901,7 @@ v8_executable("v8_sample_process") {
":v8",
":v8_libbase",
":v8_libplatform",
- "//build/config/sanitizers:deps",
+ "//build/config:exe_and_shlib_deps",
"//build/win:default_exe_manifest",
]
}
@@ -2921,7 +2921,7 @@ v8_executable("v8_parser_shell") {
":v8",
":v8_libbase",
":v8_libplatform",
- "//build/config/sanitizers:deps",
+ "//build/config:exe_and_shlib_deps",
"//build/win:default_exe_manifest",
]
}
@@ -2943,7 +2943,7 @@ if (want_v8_shell) {
":v8",
":v8_libbase",
":v8_libplatform",
- "//build/config/sanitizers:deps",
+ "//build/config:exe_and_shlib_deps",
"//build/win:default_exe_manifest",
]
}
@@ -2955,7 +2955,7 @@ template("v8_fuzzer") {
v8_executable("v8_simple_" + name) {
deps = [
":" + name,
- "//build/config/sanitizers:deps",
+ "//build/config:exe_and_shlib_deps",
"//build/win:default_exe_manifest",
]
« no previous file with comments | « no previous file | test/cctest/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698