Home | History | Annotate | Download | only in adtproductbuild

Lines Matching defs:ide

3 # Makefile rules to build the ADT Eclipse IDE.
8 # ADT_IDE_DEST_DIR: existing directory where to copy the IDE zip files.
12 # Expose the ADT Eclipse IDE build only for the SDK when building adt_eclipse_ide
35 ADT_VERSION := $(shell grep Bundle-Version $(TOPDIR)sdk/eclipse/plugins/com.android.ide.eclipse.adt/META-INF/MANIFEST.MF | sed 's/.*: \([0-9]\+.[0-9]\+.[0-9]\+\).*/\1/')
40 # of the ide as specified in the build.properties file.
64 | sed 's/^/IDE: /'; \
66 echo "ADT IDE build failed. Full log:" ; \
72 # Defines the zip filename generated for an OS specific android IDE.
73 define adt-ide-zip
74 $(ADT_IDE_RELEASE_DIR)/android-ide-$(ADT_IDE_ZIP_QUALIFIER)-$(1).$(2).zip
77 # Defines the rule needed to make one of the OS specific android IDE.
83 # $5 = the destination zip with the zipped eclipse ide.
99 define mk-adt-ide-2
111 cp $(4)/eclipse/plugins/com.android.ide.eclipse.adt.package*/icons/adt.icns \
116 sed -i -e 's/org.eclipse.platform/com.android.ide.eclipse.adt.package.product/g' \
121 $(4)/eclipse/plugins/com.android.ide.eclipse.adt.package_*/about.mappings && \
122 sed -i -e 's/org.eclipse.platform.ide/com.android.ide.eclipse.adt.package.product/g' \
123 -e 's/org.eclipse.platform/com.android.ide.eclipse.adt.package/g' \
132 @echo "ADT IDE copied to $(ADT_IDE_DEST_DIR)/$(notdir $(5))"
134 @echo "ADT IDE available at $(5)"
138 # Defines the rule needed to make one of the OS specific android IDE.
139 # This is just a convenience wrapper that calls mk-adt-ide-2 and presets
144 define mk-adt-ide
145 $(call mk-adt-ide-2,$(1),$(2), \
147 $(ADT_IDE_RELEASE_DIR)/android-ide-$(1).$(2), \
148 $(call adt-ide-zip,$(1),$(2)))
149 ADT_IDE_MODULE_DEPS += $(call adt-ide-zip,$(1),$(2))
151 ADT_IDE_MODULE_DEPS += $(ADT_IDE_DEST_DIR)/$(notdir $(call adt-ide-zip,$(1),$(2)))
155 $(eval $(call mk-adt-ide,linux.gtk,x86))
156 $(eval $(call mk-adt-ide,linux.gtk,x86_64))
157 $(eval $(call mk-adt-ide,macosx.cocoa,x86_64))
158 $(eval $(call mk-adt-ide,win32.win32,x86))
159 $(eval $(call mk-adt-ide,win32.win32,x86_64))
161 # This rule triggers the build of the 3 ide zip files.
168 @echo "Packing of ADT IDE done"