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

Unified Diff: BUILD.gn

Issue 2608243005: Fix building simple_fuzzer with v8_static_library (Closed)
Patch Set: Created 3 years, 11 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 | no next file » | 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 fb1872eece8393cd15f8a126651ec41af46f08bf..ae493483582fd32d43d80d2666f70d1a92bf1860 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -2416,14 +2416,6 @@ v8_source_set("fuzzer_support") {
}
}
-v8_source_set("simple_fuzzer") {
- sources = [
- "test/fuzzer/fuzzer.cc",
- ]
-
- configs = [ ":internal_config_base" ]
-}
-
###############################################################################
# Executables
#
@@ -2703,10 +2695,14 @@ template("v8_fuzzer") {
v8_executable("v8_simple_" + name) {
deps = [
":" + name,
- ":simple_fuzzer",
+ "//build/config/sanitizers:deps",
"//build/win:default_exe_manifest",
]
+ sources = [
+ "test/fuzzer/fuzzer.cc",
+ ]
+
configs = [ ":external_config" ]
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698