< prev index next >

make/common/Modules.gmk

Print this page
rev 2048 : 8150044: Generate classlists at build-time
Reviewed-by: alanb
Contributed-by: claes.redestad@oracle.com, erik.joelsson@oracle.com


 111     jdk.xml.dom \
 112     jdk.localedata \
 113     jdk.naming.dns \
 114     jdk.scripting.nashorn \
 115     jdk.zipfs \
 116     #
 117 
 118 JRE_TOOL_MODULES += \
 119     jdk.jdwp.agent \
 120     jdk.pack200 \
 121     jdk.scripting.nashorn.shell \
 122     #
 123 
 124 ifeq ($(OPENJDK_TARGET_OS), windows)
 125   PLATFORM_MODULES += jdk.crypto.mscapi
 126 endif
 127 ifeq ($(OPENJDK_TARGET_OS), solaris)
 128   PLATFORM_MODULES += jdk.crypto.ucrypto
 129 endif
 130 




 131 ################################################################################
 132 # Some platforms don't have the serviceability agent
 133 
 134 ifeq ($(INCLUDE_SA), false)
 135   MODULES_FILTER += jdk.hotspot.agent
 136 endif
 137 
 138 ################################################################################
 139 # Module list macros
 140 
 141 # Use append so that the custom extension may add to these variables
 142 
 143 GENERATED_SRC_DIRS += \
 144     $(SUPPORT_OUTPUTDIR)/gensrc \
 145     #
 146 
 147 TOP_SRC_DIRS += \
 148     $(CORBA_TOPDIR)/src \
 149     $(HOTSPOT_TOPDIR)/src \
 150     $(JDK_TOPDIR)/src \




 111     jdk.xml.dom \
 112     jdk.localedata \
 113     jdk.naming.dns \
 114     jdk.scripting.nashorn \
 115     jdk.zipfs \
 116     #
 117 
 118 JRE_TOOL_MODULES += \
 119     jdk.jdwp.agent \
 120     jdk.pack200 \
 121     jdk.scripting.nashorn.shell \
 122     #
 123 
 124 ifeq ($(OPENJDK_TARGET_OS), windows)
 125   PLATFORM_MODULES += jdk.crypto.mscapi
 126 endif
 127 ifeq ($(OPENJDK_TARGET_OS), solaris)
 128   PLATFORM_MODULES += jdk.crypto.ucrypto
 129 endif
 130 
 131 # These modules are included in the interim image which is used to run profiling
 132 # before building the real images.
 133 INTERIM_IMAGE_MODULES := java.base java.logging
 134 
 135 ################################################################################
 136 # Some platforms don't have the serviceability agent
 137 
 138 ifeq ($(INCLUDE_SA), false)
 139   MODULES_FILTER += jdk.hotspot.agent
 140 endif
 141 
 142 ################################################################################
 143 # Module list macros
 144 
 145 # Use append so that the custom extension may add to these variables
 146 
 147 GENERATED_SRC_DIRS += \
 148     $(SUPPORT_OUTPUTDIR)/gensrc \
 149     #
 150 
 151 TOP_SRC_DIRS += \
 152     $(CORBA_TOPDIR)/src \
 153     $(HOTSPOT_TOPDIR)/src \
 154     $(JDK_TOPDIR)/src \


< prev index next >