summaryrefslogtreecommitdiffstats
path: root/tools/integrate/Android.mk
diff options
context:
space:
mode:
authorJesse Wilson <jessewilson@google.com>2009-09-14 11:23:39 -0700
committerJesse Wilson <jessewilson@google.com>2009-09-15 14:02:30 -0700
commit0ad6047ce9518a68af5b103f8cb4a55e1565d7f7 (patch)
treef1a2f5c38ea802a325c4650a1ee5daf88bb5ead0 /tools/integrate/Android.mk
parentc3400414d2ace90f4bffe1245b6310d9bcdf9bc0 (diff)
downloadlibcore-0ad6047ce9518a68af5b103f8cb4a55e1565d7f7.zip
libcore-0ad6047ce9518a68af5b103f8cb4a55e1565d7f7.tar.gz
libcore-0ad6047ce9518a68af5b103f8cb4a55e1565d7f7.tar.bz2
First cut at a tool to perform automated syncs from Harmony to Dalvik.
Much of the work of the tool is managing three versions of our code: - the current Harmony code - the current Dalvik code - the common ancestor, an older version of Harmony The tool calls out to the command line to perform the actual filesystem work. Eventually I'd like to support all of our modules, and also gathering diffs to send upstream to Harmony.
Diffstat (limited to 'tools/integrate/Android.mk')
-rw-r--r--tools/integrate/Android.mk19
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/integrate/Android.mk b/tools/integrate/Android.mk
new file mode 100644
index 0000000..629a5fd
--- /dev/null
+++ b/tools/integrate/Android.mk
@@ -0,0 +1,19 @@
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := \
+ Command.java \
+ Filesystem.java \
+ Git.java \
+ Module.java \
+ Modules.java \
+ MappedDirectory.java \
+ PullHarmonyCode.java \
+ Svn.java
+
+LOCAL_MODULE:= integrate
+
+include $(BUILD_HOST_JAVA_LIBRARY)
+
+include $(call all-subdir-makefiles)