From 9dc8de122c8a2dedba37d1a2b5c19313699bebe5 Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Thu, 1 Sep 2016 14:38:33 -0700 Subject: [PATCH] Skia: Add crc32 sources when `SK_CPU_ARM64` is defined. (#2997) --- skia/BUILD.gn | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/skia/BUILD.gn b/skia/BUILD.gn index f542ec4a4..02c9a4177 100644 --- a/skia/BUILD.gn +++ b/skia/BUILD.gn @@ -519,8 +519,9 @@ source_set("skia_opts") { sources = gypi_skia_opts.none_sources } } else if (current_cpu == "arm64") { - # TODO(1841): NEON sources are not currently used on arm64. - sources = gypi_skia_opts.armv7_sources + gypi_skia_opts.neon_sources + sources = gypi_skia_opts.armv7_sources + + gypi_skia_opts.neon_sources + + gypi_skia_opts.crc32_sources } else if (current_cpu == "mipsel") { cflags += [ "-fomit-frame-pointer" ] -- GitLab