aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/opts
diff options
context:
space:
mode:
authorGravatar agl@chromium.org <agl@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2009-11-19 03:21:57 +0000
committerGravatar agl@chromium.org <agl@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2009-11-19 03:21:57 +0000
commit28bee9591d1b24de4a536dbd2ae948df8186ba94 (patch)
treee73ef5a1f670774a4249e35238c4c43ad09adf23 /src/opts
parent181172d5642fce4a4c1d339a6e3c5e4a8079b11a (diff)
Exclude Android-only cpu-features.h from non-Android builds.
This is needed when building Chromium for ARM. Patch by Joel Stanley <joel@chromium.org> git-svn-id: http://skia.googlecode.com/svn/trunk@435 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/opts')
-rw-r--r--src/opts/SkBitmapProcState_opts_arm.cpp5
-rw-r--r--src/opts/SkBlitRow_opts_arm.cpp5
2 files changed, 8 insertions, 2 deletions
diff --git a/src/opts/SkBitmapProcState_opts_arm.cpp b/src/opts/SkBitmapProcState_opts_arm.cpp
index 707304c964..dfb558625f 100644
--- a/src/opts/SkBitmapProcState_opts_arm.cpp
+++ b/src/opts/SkBitmapProcState_opts_arm.cpp
@@ -14,7 +14,10 @@
* limitations under the License.
*/
-#include <machine/cpu-features.h>
+#ifdef ANDROID
+ #include <machine/cpu-features.h>
+#endif
+
#include "SkBitmapProcState.h"
#include "SkColorPriv.h"
#include "SkUtils.h"
diff --git a/src/opts/SkBlitRow_opts_arm.cpp b/src/opts/SkBlitRow_opts_arm.cpp
index ae77bca56e..cb72473a6c 100644
--- a/src/opts/SkBlitRow_opts_arm.cpp
+++ b/src/opts/SkBlitRow_opts_arm.cpp
@@ -15,7 +15,10 @@
** limitations under the License.
*/
-#include <machine/cpu-features.h>
+#ifdef ANDROID
+ #include <machine/cpu-features.h>
+#endif
+
#include "SkBlitRow.h"
#include "SkColorPriv.h"
#include "SkDither.h"