OSDN Git Service

First cut at a tool to perform automated syncs from Harmony to Dalvik.
authorJesse Wilson <jessewilson@google.com>
Mon, 14 Sep 2009 18:23:39 +0000 (11:23 -0700)
committerJesse Wilson <jessewilson@google.com>
Tue, 15 Sep 2009 21:02:30 +0000 (14:02 -0700)
commit7136192963b376b3c904c9ec08a9d2746521f1e0
treeccbc9668cad13d190ae97b79591e2520269fcc87
parentb8f2972e3ceef7e6bd5ae9763257dfae6fe06349
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.
libcore/tools/integrate/Android.mk [new file with mode: 0644]
libcore/tools/integrate/Command.java [new file with mode: 0644]
libcore/tools/integrate/Filesystem.java [new file with mode: 0644]
libcore/tools/integrate/Git.java [new file with mode: 0644]
libcore/tools/integrate/MappedDirectory.java [new file with mode: 0644]
libcore/tools/integrate/Module.java [new file with mode: 0644]
libcore/tools/integrate/Modules.java [new file with mode: 0644]
libcore/tools/integrate/PullHarmonyCode.java [new file with mode: 0644]
libcore/tools/integrate/Svn.java [new file with mode: 0644]