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

Unified Diff: skia/skia_library_opts.gyp

Issue 199583008: Enable Arm64 target arch in gyp build config (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix skia.gyp too. Created 6 years, 9 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 | « skia/skia.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/skia_library_opts.gyp
diff --git a/skia/skia_library_opts.gyp b/skia/skia_library_opts.gyp
index 3e2a4f8c843a6941014a62d2c5f28b48c3a2baae..f463c76754ef381da9d56dea6464d278137d66f3 100644
--- a/skia/skia_library_opts.gyp
+++ b/skia/skia_library_opts.gyp
@@ -38,12 +38,14 @@
],
'conditions': [
[ 'os_posix == 1 and OS != "mac" and OS != "android" and \
- target_arch != "arm" and target_arch != "mipsel"', {
+ target_arch != "arm" and target_arch != "arm64" and \
+ target_arch != "mipsel"', {
'cflags': [
'-msse2',
],
}],
- [ 'target_arch != "arm" and target_arch != "mipsel"', {
+ [ 'target_arch != "arm" and target_arch != "mipsel" and \
+ target_arch != "arm64"', {
'sources': [
'../third_party/skia/src/opts/SkBitmapProcState_opts_SSE2.cpp',
'../third_party/skia/src/opts/SkBlitRect_opts_SSE2.cpp',
@@ -58,6 +60,7 @@
'skia_opts_ssse3',
],
}],
+ # TODO(rmcilroy): Add neon support for arm64 - http://crbug.com/354405
[ 'target_arch == "arm"', {
'conditions': [
[ 'arm_version >= 7 and arm_neon == 1', {
@@ -177,7 +180,8 @@
],
},
}],
- [ 'target_arch != "arm" and target_arch != "mipsel"', {
+ [ 'target_arch != "arm" and target_arch != "arm64" and \
+ target_arch != "mipsel"', {
'sources': [
'../third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.cpp',
],
« no previous file with comments | « skia/skia.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698