Home | History | Annotate | Download | only in tests
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 
      5 LOCAL_SRC_FILES:= \
      6   BitmapCopyTest.cpp \
      7   BitmapGetColorTest.cpp \
      8   BlitRowTest.cpp \
      9   ClampRangeTest.cpp \
     10   ClipCubicTest.cpp \
     11   ClipStackTest.cpp \
     12   ClipperTest.cpp \
     13   ColorFilterTest.cpp \
     14   ColorTest.cpp \
     15   DequeTest.cpp \
     16   DrawBitmapRectTest.cpp \
     17   FillPathTest.cpp \
     18   FlateTest.cpp \
     19   GeometryTest.cpp \
     20   InfRectTest.cpp \
     21   MathTest.cpp \
     22   MatrixTest.cpp \
     23   MetaDataTest.cpp \
     24   PackBitsTest.cpp \
     25   PaintTest.cpp \
     26   ParsePathTest.cpp \
     27   PathCoverageTest.cpp \
     28   PathMeasureTest.cpp \
     29   PathTest.cpp \
     30   Reader32Test.cpp \
     31   RefDictTest.cpp \
     32   RegionTest.cpp \
     33   Sk64Test.cpp \
     34   SortTest.cpp \
     35   SrcOverTest.cpp \
     36   StreamTest.cpp \
     37   StringTest.cpp \
     38   Test.cpp \
     39   TestSize.cpp \
     40   UtilsTest.cpp \
     41   Writer32Test.cpp \
     42   XfermodeTest.cpp
     43 
     44 # The name of the file with a main function must
     45 # match native test's naming rule: xxx_test.cpp.
     46 LOCAL_SRC_FILES += \
     47   skia_test.cpp
     48 
     49 LOCAL_MODULE:= skia_test
     50 
     51 LOCAL_C_INCLUDES := \
     52         external/skia/include/core \
     53         external/skia/include/effects \
     54         external/skia/include/images \
     55         external/skia/include/ports \
     56         external/skia/include/utils \
     57         external/skia/src/core
     58 
     59 LOCAL_SHARED_LIBRARIES := \
     60         libskia libcutils
     61 
     62 LOCAL_MODULE_TAGS := eng tests
     63 
     64 include $(BUILD_EXECUTABLE)
     65