aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Android.mk
blob: 4db6c7583d1b5f44a54cb2d205dd692733683f56 (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
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)


LOCAL_SRC_FILES:= \
  BitmapCopyTest.cpp \
  BitmapGetColorTest.cpp \
  BlitRowTest.cpp \
  ClampRangeTest.cpp \
  ClipCubicTest.cpp \
  ClipStackTest.cpp \
  ClipperTest.cpp \
  ColorFilterTest.cpp \
  ColorTest.cpp \
  DequeTest.cpp \
  DrawBitmapRectTest.cpp \
  FillPathTest.cpp \
  FlateTest.cpp \
  GeometryTest.cpp \
  InfRectTest.cpp \
  MathTest.cpp \
  MatrixTest.cpp \
  MetaDataTest.cpp \
  PackBitsTest.cpp \
  PaintTest.cpp \
  ParsePathTest.cpp \
  PathCoverageTest.cpp \
  PathMeasureTest.cpp \
  PathTest.cpp \
  Reader32Test.cpp \
  RefDictTest.cpp \
  RegionTest.cpp \
  Sk64Test.cpp \
  SortTest.cpp \
  SrcOverTest.cpp \
  StreamTest.cpp \
  StringTest.cpp \
  Test.cpp \
  TestSize.cpp \
  UtilsTest.cpp \
  Writer32Test.cpp \
  XfermodeTest.cpp

# The name of the file with a main function must
# match native test's naming rule: xxx_test.cpp.
LOCAL_SRC_FILES += \
  skia_test.cpp

LOCAL_MODULE:= skia_test

LOCAL_C_INCLUDES := \
        external/skia/include/core \
        external/skia/include/effects \
        external/skia/include/images \
        external/skia/include/ports \
        external/skia/include/utils \
        external/skia/src/core

LOCAL_SHARED_LIBRARIES := \
        libskia libcutils

LOCAL_MODULE_TAGS := eng tests

include $(BUILD_EXECUTABLE)