| 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 = [
|
|
|