diff options
-rw-r--r-- | gn/core.gni | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gn/core.gni b/gn/core.gni index 79498b460b..1415b5f6dc 100644 --- a/gn/core.gni +++ b/gn/core.gni @@ -530,7 +530,6 @@ if (is_win) { # assembler situation is figured out, https://crbug.com/762167 skia_core_defines += [ "SK_JUMPER_USE_ASSEMBLY=0" ] } -} else if (target_cpu == "arm" || target_cpu == "arm64" || - target_cpu == "x86" || target_cpu == "x64") { +} else if (target_cpu != "wasm") { skia_core_sources += [ "$_src/jumper/SkJumper_generated.S" ] } |