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

Unified Diff: BUILD.gn

Issue 2649133010: [foozzie] Support multi-architecture builds (Closed)
Patch Set: Review 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 | gni/v8.gni » ('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 1560b198b5065759345c529f032a7e675a32b724..cb5f655a13fd4c2b04763e76663c0979f466244e 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -754,6 +754,7 @@ action("v8_dump_build_config") {
]
args = [
rebase_path("$root_out_dir/v8_build_config.json", root_build_dir),
+ "current_cpu=\"$current_cpu\"",
"dcheck_always_on=$dcheck_always_on",
"is_asan=$is_asan",
"is_cfi=$is_cfi",
@@ -762,6 +763,7 @@ action("v8_dump_build_config") {
"is_msan=$is_msan",
"is_tsan=$is_tsan",
"target_cpu=\"$target_cpu\"",
+ "v8_current_cpu=\"$v8_current_cpu\"",
"v8_enable_i18n_support=$v8_enable_i18n_support",
"v8_enable_inspector=$v8_enable_inspector",
"v8_target_cpu=\"$v8_target_cpu\"",
@@ -2543,6 +2545,19 @@ group("gn_all") {
}
}
+group("v8_clusterfuzz") {
+ deps = [
+ ":d8",
+ ]
+
+ if (v8_multi_arch_build) {
+ deps += [
+ ":d8(//build/toolchain/linux:clang_x64)",
+ ":d8(//build/toolchain/linux:clang_x86)",
+ ]
+ }
+}
+
group("v8_fuzzers") {
testonly = true
deps = [
« no previous file with comments | « no previous file | gni/v8.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698