< prev index next >

make/common/Modules.gmk

Print this page




 128 
 129 ifeq ($(OPENJDK_TARGET_OS), windows)
 130   PLATFORM_MODULES += jdk.crypto.mscapi
 131 endif
 132 ifeq ($(OPENJDK_TARGET_OS), solaris)
 133   PLATFORM_MODULES += jdk.crypto.ucrypto
 134 endif
 135 
 136 # These modules are included in the interim image which is used to run profiling
 137 # before building the real images.
 138 INTERIM_IMAGE_MODULES := java.base java.logging
 139 
 140 ################################################################################
 141 # Some platforms don't have the serviceability agent
 142 
 143 ifeq ($(INCLUDE_SA), false)
 144   MODULES_FILTER += jdk.hotspot.agent
 145 endif
 146 
 147 ################################################################################







 148 # Module list macros
 149 
 150 # Use append so that the custom extension may add to these variables
 151 
 152 GENERATED_SRC_DIRS += \
 153     $(SUPPORT_OUTPUTDIR)/gensrc \
 154     #
 155 
 156 TOP_SRC_DIRS += \
 157     $(CORBA_TOPDIR)/src \
 158     $(HOTSPOT_TOPDIR)/src \
 159     $(JDK_TOPDIR)/src \
 160     $(LANGTOOLS_TOPDIR)/src \
 161     $(JAXP_TOPDIR)/src \
 162     $(JAXWS_TOPDIR)/src \
 163     $(NASHORN_TOPDIR)/src \
 164     #
 165 
 166 SRC_SUBDIRS += $(OPENJDK_TARGET_OS)/classes
 167 ifneq ($(OPENJDK_TARGET_OS), $(OPENJDK_TARGET_OS_TYPE))




 128 
 129 ifeq ($(OPENJDK_TARGET_OS), windows)
 130   PLATFORM_MODULES += jdk.crypto.mscapi
 131 endif
 132 ifeq ($(OPENJDK_TARGET_OS), solaris)
 133   PLATFORM_MODULES += jdk.crypto.ucrypto
 134 endif
 135 
 136 # These modules are included in the interim image which is used to run profiling
 137 # before building the real images.
 138 INTERIM_IMAGE_MODULES := java.base java.logging
 139 
 140 ################################################################################
 141 # Some platforms don't have the serviceability agent
 142 
 143 ifeq ($(INCLUDE_SA), false)
 144   MODULES_FILTER += jdk.hotspot.agent
 145 endif
 146 
 147 ################################################################################
 148 # Filter out specific modules
 149 
 150 ifeq ($(INCLUDE_GRAAL), false)
 151   MODULES_FILTER += jdk.vm.compiler
 152 endif
 153 
 154 ################################################################################
 155 # Module list macros
 156 
 157 # Use append so that the custom extension may add to these variables
 158 
 159 GENERATED_SRC_DIRS += \
 160     $(SUPPORT_OUTPUTDIR)/gensrc \
 161     #
 162 
 163 TOP_SRC_DIRS += \
 164     $(CORBA_TOPDIR)/src \
 165     $(HOTSPOT_TOPDIR)/src \
 166     $(JDK_TOPDIR)/src \
 167     $(LANGTOOLS_TOPDIR)/src \
 168     $(JAXP_TOPDIR)/src \
 169     $(JAXWS_TOPDIR)/src \
 170     $(NASHORN_TOPDIR)/src \
 171     #
 172 
 173 SRC_SUBDIRS += $(OPENJDK_TARGET_OS)/classes
 174 ifneq ($(OPENJDK_TARGET_OS), $(OPENJDK_TARGET_OS_TYPE))


< prev index next >