diff options
Diffstat (limited to 'tests/Android.mk')
-rw-r--r-- | tests/Android.mk | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/Android.mk b/tests/Android.mk new file mode 100644 index 0000000..11665cd --- /dev/null +++ b/tests/Android.mk @@ -0,0 +1,35 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_SRC_FILES:= \ + GeometryTest.cpp \ + MathTest.cpp \ + MatrixTest.cpp \ + PackBitsTest.cpp \ + Sk64Test.cpp \ + StringTest.cpp \ + Test.cpp UtilsTest.cpp \ + PathTest.cpp \ + SrcOverTest.cpp \ + StreamTest.cpp \ + SortTest.cpp \ + PathMeasureTest.cpp \ + testmain.cpp + +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 := \ + libcorecg \ + libsgl + +LOCAL_MODULE:= test-skia-unit + +LOCAL_MODULE_TAGS := tests + +include $(BUILD_EXECUTABLE) |