aboutsummaryrefslogtreecommitdiffstats
path: root/gm/Android.mk
blob: 8dcb0ef22e44a8e1dc487186ce2316df8f4a1ab4 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84

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

LOCAL_SRC_FILES := \
  gm.cpp \
  gmmain.cpp \
  system_preferences_default.cpp

# Slides
LOCAL_SRC_FILES += \
  aaclip.cpp \
  aarectmodes.cpp \
  arithmode.cpp \
  bitmapcopy.cpp \
  bitmapfilters.cpp \
  bitmapscroll.cpp \
  blurs.cpp \
  colormatrix.cpp \
  complexclip.cpp \
  complexclip2.cpp \
  convexpaths.cpp \
  cubicpaths.cpp \
  degeneratesegments.cpp \
  drawbitmaprect.cpp \
  emptypath.cpp \
  filltypes.cpp \
  filltypespersp.cpp \
  fontscaler.cpp \
  gammatext.cpp \
  gradients.cpp \
  gradtext.cpp \
  hairmodes.cpp \
  imageblur.cpp \
  lcdtext.cpp \
  linepaths.cpp \
  morphology.cpp \
  ninepatchstretch.cpp \
  nocolorbleed.cpp \
  patheffects.cpp \
  pathfill.cpp \
  pathreverse.cpp \
  points.cpp \
  poly2poly.cpp \
  quadpaths.cpp \
  shadertext.cpp \
  shadows.cpp \
  shapes.cpp \
  strokefill.cpp \
  strokerects.cpp \
  strokes.cpp \
  tablecolorfilter.cpp \
  testimagefilters.cpp \
  texdata.cpp \
  tilemodes.cpp \
  tinybitmap.cpp \
  verttext.cpp \
  verttext2.cpp \
  xfermodes.cpp

LOCAL_STATIC_LIBRARIES := libskiagpu
LOCAL_SHARED_LIBRARIES := \
  libcutils \
  libutils \
  libskia \
  libEGL \
  libGLESv2
  
LOCAL_C_INCLUDES := \
  external/skia/include/config \
  external/skia/include/core \
  external/skia/include/effects \
  external/skia/include/gpu \
  external/skia/include/images \
  external/skia/include/utils \
  external/skia/gm

#LOCAL_CFLAGS := 

LOCAL_MODULE := skia_gm

LOCAL_MODULE_TAGS := optional

include $(BUILD_EXECUTABLE)