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

Unified Diff: build/secondary/third_party/libjpeg_turbo/BUILD.gn

Issue 1666833002: Add missing arm64 simd build rules for libjpeg_turbo for GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/secondary/third_party/libjpeg_turbo/BUILD.gn
diff --git a/build/secondary/third_party/libjpeg_turbo/BUILD.gn b/build/secondary/third_party/libjpeg_turbo/BUILD.gn
index 6be39febb1fe22071e03db23289998073da98f94..09e5eb49ec08f1e69f3bae63005f746e8731931e 100644
--- a/build/secondary/third_party/libjpeg_turbo/BUILD.gn
+++ b/build/secondary/third_party/libjpeg_turbo/BUILD.gn
@@ -116,6 +116,11 @@ source_set("simd") {
"simd/jsimd_arm.c",
"simd/jsimd_arm_neon.S",
]
+ } else if (current_cpu == "arm64") {
+ sources = [
+ "simd/jsimd_arm64.c",
+ "simd/jsimd_arm64_neon.S",
+ ]
} else {
sources = [
"jsimd_none.c",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698