Home | History | Annotate | Download | only in tests
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 
      5 LOCAL_SRC_FILES:= \
      6         BlitRowTest.cpp \
      7         GeometryTest.cpp \
      8         MathTest.cpp \
      9         MatrixTest.cpp \
     10         PackBitsTest.cpp \
     11         Sk64Test.cpp \
     12         StringTest.cpp \
     13         Test.cpp UtilsTest.cpp \
     14         PathTest.cpp \
     15         SrcOverTest.cpp \
     16         StreamTest.cpp \
     17         SortTest.cpp \
     18         PathMeasureTest.cpp
     19 
     20 # The name of the file with a main function must
     21 # match native test's naming rule: xxx_test.cpp.
     22 LOCAL_SRC_FILES += \
     23         skia_test.cpp
     24 
     25 LOCAL_MODULE:= skia_test
     26 
     27 LOCAL_C_INCLUDES := \
     28         external/skia/include/core \
     29         external/skia/include/effects \
     30         external/skia/include/images \
     31         external/skia/include/ports \
     32         external/skia/include/utils \
     33         external/skia/src/core
     34 
     35 LOCAL_SHARED_LIBRARIES := \
     36         libskia libcutils
     37 
     38 LOCAL_MODULE_TAGS := eng tests
     39 
     40 include $(BUILD_EXECUTABLE)
     41