blob: 2d7a0c3983fe424977ff9d7698efca039afe0e15 [file] [log] [blame]
Ruei-sung Line5c8ed72012-05-31 11:59:31 -07001LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_CFLAGS += -DEGL_EGLEXT_PROTOTYPES
6
7LOCAL_SRC_FILES := jni_egl_fence.cpp
8
Keun young Park85ff0012012-08-23 09:44:46 -07009LOCAL_SDK_VERSION := 9
Andrew Hsieh4c8abc32012-07-18 16:40:14 -070010
Ruei-sung Line5c8ed72012-05-31 11:59:31 -070011LOCAL_MODULE_TAGS := optional
12
13LOCAL_MODULE := libjni_eglfence
14
Ying Wang745eb582014-07-22 12:27:43 -070015LOCAL_LDLIBS := -llog -lEGL
16
nicolasroard0d7cdf82012-09-25 14:27:56 -070017
18include $(BUILD_SHARED_LIBRARY)
19
20# Filtershow
21
22include $(CLEAR_VARS)
23
Sascha Haeberling2f879102012-10-19 15:43:03 -070024LOCAL_CPP_EXTENSION := .cc
nicolasroard69d781a2012-09-26 17:50:19 -070025LOCAL_SDK_VERSION := 9
26LOCAL_MODULE := libjni_filtershow_filters
Ruben Brunk101789e2012-12-13 22:42:33 -080027LOCAL_SRC_FILES := filters/gradient.c \
Ruben Brunk7bd60252012-10-08 13:48:46 -070028 filters/saturated.c \
John Hofordbf97d3a2012-10-01 17:21:55 -070029 filters/exposure.c \
Ruben Brunkfc8d2752012-12-10 18:50:10 -080030 filters/edge.c \
John Hofordd42f6c62012-09-27 16:34:21 -070031 filters/contrast.c \
32 filters/hue.c \
John Hofordc7b2c282012-10-02 18:12:03 -070033 filters/shadows.c \
John Hoford8921c282013-02-20 17:50:42 -080034 filters/highlight.c \
John Hofordc7b2c282012-10-02 18:12:03 -070035 filters/hsv.c \
John Hofordb559b2d2012-10-04 14:12:36 -070036 filters/vibrance.c \
Ruben Brunk7bd60252012-10-08 13:48:46 -070037 filters/geometry.c \
Ruben Brunkce178c12012-12-10 19:40:27 -080038 filters/negative.c \
John Hoford90b1d252012-10-08 14:21:57 -070039 filters/redEyeMath.c \
John Hoford457e88c2012-10-09 16:17:17 -070040 filters/fx.c \
John Hoford4988eff2012-10-10 14:17:30 -070041 filters/wbalance.c \
Sascha Haeberling2f879102012-10-19 15:43:03 -070042 filters/redeye.c \
John Hoford67fefdb2012-10-23 15:17:12 -070043 filters/bwfilter.c \
Ruben Brunk27fb72e2012-12-12 21:35:12 -080044 filters/tinyplanet.cc \
45 filters/kmeans.cc
nicolasroard0d7cdf82012-09-25 14:27:56 -070046
47LOCAL_CFLAGS += -ffast-math -O3 -funroll-loops
Ying Wang745eb582014-07-22 12:27:43 -070048LOCAL_LDLIBS := -llog -ljnigraphics
nicolasroard0d7cdf82012-09-25 14:27:56 -070049LOCAL_ARM_MODE := arm
50
Ruei-sung Line5c8ed72012-05-31 11:59:31 -070051include $(BUILD_SHARED_LIBRARY)