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

Unified Diff: skia/skia.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 | « components/nacl/nacl_defines.gypi ('k') | skia/skia_library_opts.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/skia.gyp
diff --git a/skia/skia.gyp b/skia/skia.gyp
index 4a5d62e5b439a8ce00f3174ab524b548d037d27a..4c4f6f89aa2e2bd169d7ecc8953f63b6b551908e 100644
--- a/skia/skia.gyp
+++ b/skia/skia.gyp
@@ -99,12 +99,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 != "mipsel" and \
+ target_arch != "arm64"', {
'cflags': [
'-msse2',
],
}],
- [ 'target_arch != "arm" and target_arch != "mipsel"', {
+ [ 'target_arch != "arm" and target_arch != "mipsel" and \
+ target_arch != "arm64"', {
'sources': [
'ext/convolver_SSE2.cc',
],
« no previous file with comments | « components/nacl/nacl_defines.gypi ('k') | skia/skia_library_opts.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698