aboutsummaryrefslogtreecommitdiffstats
path: root/gm/Android.mk
blob: 6ce1dae3ec2b89f3600c1dd1c61ba3a01d38248c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES := \
	filltypes.cpp \
    gradients.cpp \
	tilemodes.cpp \
	bitmapfilters.cpp \
	xfermodes.cpp \
	gmmain.cpp

# additional optional class for this tool
LOCAL_SRC_FILES += \
	../src/utils/SkUnitMappers.cpp

LOCAL_SHARED_LIBRARIES := libcutils libskia
LOCAL_C_INCLUDES := \
    external/skia/include/config \
    external/skia/include/core \
    external/skia/include/images \
    external/skia/include/utils \
    external/skia/include/effects

#LOCAL_CFLAGS := 

LOCAL_MODULE := skia_gm

LOCAL_MODULE_TAGS := optional

include $(BUILD_EXECUTABLE)