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

Unified Diff: Android.mk

Issue 2285683002: Add MIPS SIMD Arch (MSA) optimized MirrorRow function (Closed)
Patch Set: Created 4 years, 4 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 | BUILD.gn » ('j') | BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Android.mk
diff --git a/Android.mk b/Android.mk
index 4d2092acf59ebdc0a4d4ceb38545d1c8263d3251..3988cb969180355e4645438d64af8e0d9992a719 100644
--- a/Android.mk
+++ b/Android.mk
@@ -53,6 +53,12 @@ ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
source/scale_neon.cc.neon
endif
+ifeq ($(TARGET_ARCH_ABI),mips)
+ LOCAL_CFLAGS += -DLIBYUV_MSA
+ LOCAL_SRC_FILES += \
+ source/row_msa.cc
+endif
+
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
« no previous file with comments | « no previous file | BUILD.gn » ('j') | BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698