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

Unified Diff: skia/skia.gyp

Issue 463027: arm: Add thumb target and associated fixes (Closed)
Patch Set: fix comment Created 11 years 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 | « build/common.gypi ('k') | no next file » | 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 97dcd35920698a842743099ff02ecb54bbf9f95c..ab8d35e25169cfc9b17bf08243a02b7747b69769 100644
--- a/skia/skia.gyp
+++ b/skia/skia.gyp
@@ -576,16 +576,13 @@
[ 'OS != "win"', {
'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ],
}],
- [ 'target_arch == "arm" and armv7 == 1', {
+ [ 'armv7 == 1', {
'defines': [
'__ARM_HAVE_NEON',
'__ARM_ARCH__=7',
],
- 'cflags!': [
- # These files contain ARM assembly, and building with thumb breaks
- # the assembler.
- '-mthumb',
- ],
+ }],
+ [ 'target_arch == "arm"', {
'sources!': [
'../third_party/skia/src/opts/opts_check_SSE2.cpp'
],
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698