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

Side by Side Diff: Android.mk

Issue 2553403002: Add MSA optimized TransposeWx8_MSA and TransposeUVWx8_MSA functions (Closed)
Patch Set: Changes as per review comments Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This is the Android makefile for libyuv for both platform and NDK. 1 # This is the Android makefile for libyuv for both platform and NDK.
2 LOCAL_PATH:= $(call my-dir) 2 LOCAL_PATH:= $(call my-dir)
3 3
4 include $(CLEAR_VARS) 4 include $(CLEAR_VARS)
5 5
6 LOCAL_CPP_EXTENSION := .cc 6 LOCAL_CPP_EXTENSION := .cc
7 7
8 LOCAL_SRC_FILES := \ 8 LOCAL_SRC_FILES := \
9 source/compare.cc \ 9 source/compare.cc \
10 source/compare_common.cc \ 10 source/compare_common.cc \
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 source/compare_neon.cc.neon \ 50 source/compare_neon.cc.neon \
51 source/rotate_neon.cc.neon \ 51 source/rotate_neon.cc.neon \
52 source/row_neon.cc.neon \ 52 source/row_neon.cc.neon \
53 source/scale_neon.cc.neon 53 source/scale_neon.cc.neon
54 endif 54 endif
55 55
56 ifeq ($(TARGET_ARCH_ABI),mips) 56 ifeq ($(TARGET_ARCH_ABI),mips)
57 LOCAL_CFLAGS += -DLIBYUV_MSA 57 LOCAL_CFLAGS += -DLIBYUV_MSA
58 LOCAL_SRC_FILES += \ 58 LOCAL_SRC_FILES += \
59 source/row_msa.cc \ 59 source/row_msa.cc \
60 source/scale_msa.cc 60 source/scale_msa.cc \
61 source/rotate_msa.cc
61 endif 62 endif
62 63
63 LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include 64 LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
64 LOCAL_C_INCLUDES += $(LOCAL_PATH)/include 65 LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
65 66
66 LOCAL_MODULE := libyuv_static 67 LOCAL_MODULE := libyuv_static
67 LOCAL_MODULE_TAGS := optional 68 LOCAL_MODULE_TAGS := optional
68 69
69 include $(BUILD_STATIC_LIBRARY) 70 include $(BUILD_STATIC_LIBRARY)
70 71
OLDNEW
« no previous file with comments | « no previous file | BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698