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