Android.mk revision 1cab2921ab279367f8206cdadc9259d12e603548
1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4
5LOCAL_SRC_FILES:= \
6  AAClipTest.cpp \
7  BitmapCopyTest.cpp \
8  BitmapGetColorTest.cpp \
9  BlitRowTest.cpp \
10  BlurTest.cpp \
11  CanvasTest.cpp \
12  ClampRangeTest.cpp \
13  ClipCubicTest.cpp \
14  ClipStackTest.cpp \
15  ClipperTest.cpp \
16  ColorFilterTest.cpp \
17  ColorTest.cpp \
18  DataRefTest.cpp \
19  DequeTest.cpp \
20  DrawBitmapRectTest.cpp \
21  EmptyPathTest.cpp \
22  FillPathTest.cpp \
23  FlateTest.cpp \
24  GeometryTest.cpp \
25  GLInterfaceValidation.cpp \
26  GLProgramsTest.cpp \
27  InfRectTest.cpp \
28  MathTest.cpp \
29  MatrixTest.cpp \
30  Matrix44Test.cpp \
31  MemsetTest.cpp \
32  MetaDataTest.cpp \
33  PackBitsTest.cpp \
34  PaintTest.cpp \
35  ParsePathTest.cpp \
36  PathCoverageTest.cpp \
37  PathMeasureTest.cpp \
38  PathTest.cpp \
39  PointTest.cpp \
40  QuickRejectTest.cpp \
41  Reader32Test.cpp \
42  ReadPixelsTest.cpp \
43  RefDictTest.cpp \
44  RegionTest.cpp \
45  ScalarTest.cpp \
46  ShaderOpacityTest.cpp \
47  Sk64Test.cpp \
48  skia_test.cpp \
49  SortTest.cpp \
50  SrcOverTest.cpp \
51  StreamTest.cpp \
52  StringTest.cpp \
53  Test.cpp \
54  Test.h \
55  TestSize.cpp \
56  UnicodeTest.cpp \
57  UtilsTest.cpp \
58  WArrayTest.cpp \
59  WritePixelsTest.cpp \
60  Writer32Test.cpp \
61  XfermodeTest.cpp
62
63# TODO: tests that currently are causing build problems
64#LOCAL_SRC_FILES += \
65#  BitSetTest.cpp \
66#  PDFPrimitivesTest.cpp \
67#  ToUnicode.cpp
68
69LOCAL_MODULE:= skia_test
70
71LOCAL_C_INCLUDES := \
72   external/freetype/include \
73   external/skia/include/core \
74   external/skia/include/config \
75   external/skia/include/effects \
76   external/skia/include/gpu \
77   external/skia/include/images \
78   external/skia/include/pdf \
79   external/skia/include/ports \
80   external/skia/include/utils \
81   external/skia/src/core \
82   external/skia/src/gpu
83
84LOCAL_SHARED_LIBRARIES := libcutils libskia libGLESv2 libEGL
85LOCAL_STATIC_LIBRARIES := libskiagpu
86
87LOCAL_MODULE_TAGS := eng tests
88
89include $(BUILD_EXECUTABLE)
90