summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/tests/Android.mk
diff options
context:
space:
mode:
authorChris Craik <ccraik@google.com>2011-11-15 11:28:34 -0800
committerChris Craik <ccraik@google.com>2011-11-16 16:19:16 -0800
commitdfd2fb1ed3c17d0cbb4af895f74704c22130587f (patch)
tree7585dc40af1e239b777c4a339bc4ae128e796d73 /Source/WebCore/tests/Android.mk
parentd34224ca67791aa7215160c7be4900f965f79eea (diff)
downloadexternal_webkit-dfd2fb1ed3c17d0cbb4af895f74704c22130587f.zip
external_webkit-dfd2fb1ed3c17d0cbb4af895f74704c22130587f.tar.gz
external_webkit-dfd2fb1ed3c17d0cbb4af895f74704c22130587f.tar.bz2
synchronous layer updates, and animation deferral during paint
bug:5522081 bug:5239801 bug:5297563 Change-Id: I600f66999e093f720a8ea97ef3e15d3d1d297a8f
Diffstat (limited to 'Source/WebCore/tests/Android.mk')
-rw-r--r--Source/WebCore/tests/Android.mk49
1 files changed, 49 insertions, 0 deletions
diff --git a/Source/WebCore/tests/Android.mk b/Source/WebCore/tests/Android.mk
new file mode 100644
index 0000000..c98a9a3
--- /dev/null
+++ b/Source/WebCore/tests/Android.mk
@@ -0,0 +1,49 @@
+# Build the unit tests.
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+# Build the unit tests.
+test_src_files := \
+ TreeManager_test.cpp
+
+shared_libraries := \
+ libcutils \
+ libwebcore \
+ libskia \
+ libstlport
+
+static_libraries := \
+ libgtest \
+ libgtest_main
+
+c_includes := \
+ bionic \
+ bionic/libstdc++/include \
+ external/gtest/include \
+ external/stlport/stlport \
+ external/skia/include/core \
+ external/icu4c/common \
+ $(LOCAL_PATH)/../../JavaScriptCore \
+ $(LOCAL_PATH)/../../JavaScriptCore/wtf \
+ $(LOCAL_PATH)/.. \
+ $(LOCAL_PATH)/../platform/graphics \
+ $(LOCAL_PATH)/../platform/graphics/transforms \
+ $(LOCAL_PATH)/../platform/graphics/android
+
+ # external/webkit/Source/WebCore/platform/graphics/android
+
+module_tags := eng tests
+
+$(foreach file,$(test_src_files), \
+ $(eval include $(CLEAR_VARS)) \
+ $(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \
+ $(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \
+ $(eval LOCAL_C_INCLUDES := $(c_includes)) \
+ $(eval LOCAL_SRC_FILES := $(file)) \
+ $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \
+ $(eval LOCAL_MODULE_TAGS := $(module_tags)) \
+ $(eval include $(BUILD_EXECUTABLE)) \
+)
+
+# Build the manual test programs.
+include $(call all-makefiles-under, $(LOCAL_PATH))