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

Unified Diff: skia/skia.gyp

Issue 11342016: Fix skia build when not on armv7. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 8 years, 2 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: skia/skia.gyp
diff --git a/skia/skia.gyp b/skia/skia.gyp
index 747427c40043d4718c1d63057990636eb05327e8..a0fcf34f3592f17303eba7868525553515abd819 100644
--- a/skia/skia.gyp
+++ b/skia/skia.gyp
@@ -221,7 +221,7 @@
'GR_AGGRESSIVE_SHADER_OPTS=1',
'SK_DISABLE_FAST_AA_STROKE_RECT',
'SK_DEFERRED_CANVAS_USES_GPIPE=1',
-
+
# this flag can be removed entirely once this has baked for a while
'SK_ALLOW_OVER_32K_BITMAPS',
@@ -297,7 +297,7 @@
'SK_GAMMA_CONTRAST=0.0',
],
}],
-
+
# For POSIX platforms, prefer the Mutex implementation provided by Skia
# since it does not generate static initializers.
[ 'OS == "android" or OS == "linux" or OS == "mac" or OS == "ios"', {
@@ -721,12 +721,6 @@
'cflags': [
'-fomit-frame-pointer',
],
- 'sources': [
- '../third_party/skia/src/opts/SkBitmapProcState_opts_arm.cpp',
- '../third_party/skia/src/opts/SkBlitRow_opts_arm.cpp',
- '../third_party/skia/src/opts/SkBlitRow_opts_arm.h',
- '../third_party/skia/src/opts/opts_check_arm.cpp',
- ],
}],
[ 'armv7 == 1 and arm_neon == 0', {
'sources': [
@@ -747,9 +741,13 @@
[ 'target_arch == "arm" and armv7 != 1', {
'sources': [
'../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
+ '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
],
'sources!': [
+ '../third_party/skia/src/opts/SkBitmapProcState_opts_arm.cpp',
'../third_party/skia/src/opts/SkBlitRow_opts_arm.cpp',
+ '../third_party/skia/src/opts/SkBlitRow_opts_arm.h',
+ '../third_party/skia/src/opts/opts_check_arm.cpp',
Stephen White 2012/10/29 22:16:35 No, this doesn't seem right for armv7. You're exc
],
}],
],
« 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