Update BUILD.gn
This commit is contained in:
parent
6a28885c43
commit
8b2db3a4f3
1 changed files with 3 additions and 1 deletions
4
BUILD.gn
4
BUILD.gn
|
@ -1615,8 +1615,10 @@ if (!is_ios) {
|
|||
is_valid_x86_target =
|
||||
target_os != "ios" && target_os != "mac" &&
|
||||
(target_os != "linux" || use_libfuzzer || !build_with_chromium)
|
||||
|
||||
# Note: v8_target_cpu == arm allows using the V8 arm simulator on x86 for fuzzing.
|
||||
assert(
|
||||
is_valid_x86_target || target_cpu != "x86",
|
||||
is_valid_x86_target || target_cpu != "x86" || v8_target_cpu == "arm",
|
||||
"'target_cpu=x86' is not supported for 'target_os=$target_os'. Consider omitting 'target_cpu' (default) or using 'target_cpu=x64' instead.")
|
||||
|
||||
group("chromium_builder_perf") {
|
||||
|
|
Loading…
Reference in a new issue