< prev index next >

make/common/Modules.gmk

Print this page




 158     jdk.javadoc \
 159     jdk.jcmd \
 160     jdk.jconsole \
 161     jdk.jdeps \
 162     jdk.jdi \
 163     jdk.jdwp.agent \
 164     jdk.jlink \
 165     jdk.jsobject \
 166     jdk.jshell \
 167     jdk.jstatd \
 168     jdk.localedata \
 169     jdk.management \
 170     jdk.management.agent \
 171     jdk.naming.dns \
 172     jdk.naming.rmi \
 173     jdk.net \
 174     jdk.pack \
 175     jdk.policytool \
 176     jdk.rmic \
 177     jdk.scripting.nashorn \

 178     jdk.sctp \
 179     jdk.security.auth \
 180     jdk.security.jgss \

 181     jdk.xml.dom \

 182     jdk.zipfs \
 183     #
 184 
 185 # These modules are included in the interim image which is used to run profiling
 186 # before building the real images.
 187 INTERIM_IMAGE_MODULES := java.base java.logging
 188 
 189 ################################################################################
 190 # Some platforms don't have the serviceability agent
 191 
 192 ifeq ($(INCLUDE_SA), false)
 193   MODULES_FILTER += jdk.hotspot.agent
 194 endif
 195 
 196 ################################################################################
 197 # Filter out Graal specific modules if Graal build is disabled
 198 
 199 ifeq ($(INCLUDE_GRAAL), false)
 200   MODULES_FILTER += jdk.internal.vm.compiler
 201 endif




 158     jdk.javadoc \
 159     jdk.jcmd \
 160     jdk.jconsole \
 161     jdk.jdeps \
 162     jdk.jdi \
 163     jdk.jdwp.agent \
 164     jdk.jlink \
 165     jdk.jsobject \
 166     jdk.jshell \
 167     jdk.jstatd \
 168     jdk.localedata \
 169     jdk.management \
 170     jdk.management.agent \
 171     jdk.naming.dns \
 172     jdk.naming.rmi \
 173     jdk.net \
 174     jdk.pack \
 175     jdk.policytool \
 176     jdk.rmic \
 177     jdk.scripting.nashorn \
 178     jdk.scripting.nashorn.shell \
 179     jdk.sctp \
 180     jdk.security.auth \
 181     jdk.security.jgss \
 182     jdk.xml.bind \
 183     jdk.xml.dom \
 184     jdk.xml.ws \
 185     jdk.zipfs \
 186     #
 187 
 188 # These modules are included in the interim image which is used to run profiling
 189 # before building the real images.
 190 INTERIM_IMAGE_MODULES := java.base java.logging
 191 
 192 ################################################################################
 193 # Some platforms don't have the serviceability agent
 194 
 195 ifeq ($(INCLUDE_SA), false)
 196   MODULES_FILTER += jdk.hotspot.agent
 197 endif
 198 
 199 ################################################################################
 200 # Filter out Graal specific modules if Graal build is disabled
 201 
 202 ifeq ($(INCLUDE_GRAAL), false)
 203   MODULES_FILTER += jdk.internal.vm.compiler
 204 endif


< prev index next >