Home | History | Annotate | Download | only in app
      1 # Copyright 2007 The Android Open Source Project
      2 #
      3 LOCAL_PATH := $(call my-dir)
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_SRC_FILES := $(call all-java-files-under, src)
      7 LOCAL_JAVA_RESOURCE_DIRS := src
      8 
      9 LOCAL_JAR_MANIFEST := etc/manifest.txt
     10 
     11 # IMPORTANT: if you add a new dependency here, please make sure
     12 # to also check the following files:
     13 #   sdkmanager/app/etc/manifest.txt
     14 #   sdkmanager/app/etc/android.bat
     15 # (Note that we don't reference swt.jar in these files since
     16 #  it is dynamically added by android.bat/.sh based on whether the
     17 #  current VM is 32 or 64 bit.)
     18 LOCAL_JAVA_LIBRARIES := \
     19 	androidprefs \
     20 	sdklib \
     21 	sdkuilib \
     22 	swt \
     23 	org.eclipse.jface_3.4.2.M20090107-0800 \
     24 	org.eclipse.equinox.common_3.4.0.v20080421-2006 \
     25 	org.eclipse.core.commands_3.4.0.I20080509-2000
     26 
     27 LOCAL_MODULE := sdkmanager
     28 
     29 include $(BUILD_HOST_JAVA_LIBRARY)
     30 
     31 # Build all sub-directories
     32 include $(call all-makefiles-under,$(LOCAL_PATH))
     33 
     34