diff options
author | Xavier Ducrohet <xav@android.com> | 2010-02-12 14:13:02 -0800 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2010-02-12 16:36:02 -0800 |
commit | d885f0e83df714072d8357df2429e43cca95c039 (patch) | |
tree | be1f97ace8e157fb18cd04cb7a49da4779ad509e /eclipse/scripts | |
parent | 045ce029eb83e8cb35d9fa0d0fac50d380ca06a0 (diff) | |
download | sdk-d885f0e83df714072d8357df2429e43cca95c039.zip sdk-d885f0e83df714072d8357df2429e43cca95c039.tar.gz sdk-d885f0e83df714072d8357df2429e43cca95c039.tar.bz2 |
New "builders" project for common code to Eclipse and Ant.
This new project will contain build specific code used by both
the custom Ant tasks and the Eclipse builders.
The first code to go in there, is the IAbstractFile/Folder classes
already used by Eclipse as an abstraction layer for file/folder
access when some code needs to use both the Java IO API and the
Eclipse resources API.
The builders project include the implementation for the Java IO,
while the Eclipse implementation is in ADT.
Diffstat (limited to 'eclipse/scripts')
-rwxr-xr-x | eclipse/scripts/create_adt_symlinks.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclipse/scripts/create_adt_symlinks.sh b/eclipse/scripts/create_adt_symlinks.sh index 46d0d33..95f0325 100755 --- a/eclipse/scripts/create_adt_symlinks.sh +++ b/eclipse/scripts/create_adt_symlinks.sh @@ -14,7 +14,7 @@ DEST="sdk/eclipse/plugins/com.android.ide.eclipse.adt" # computes "../.." from DEST to here (in /android) BACK=`echo $DEST | sed 's@[^/]*@..@g'` -LIBS="sdkstats jarutils androidprefs layoutlib_api layoutlib_utils ninepatch sdklib sdkuilib" +LIBS="sdkstats jarutils androidprefs layoutlib_api layoutlib_utils ninepatch sdklib sdkuilib builders" echo "make java libs ..." make -j3 showcommands $LIBS || die "ADT: Fail to build one of $LIBS." |