jdk/make/CopyIntoClasses.gmk
changeset 26191 a0ff4b39d34b
parent 26190 d183677673d9
child 26192 33b90e93e3bf
equal deleted inserted replaced
26190:d183677673d9 26191:a0ff4b39d34b
     1 #
       
     2 # Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
       
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4 #
       
     5 # This code is free software; you can redistribute it and/or modify it
       
     6 # under the terms of the GNU General Public License version 2 only, as
       
     7 # published by the Free Software Foundation.  Oracle designates this
       
     8 # particular file as subject to the "Classpath" exception as provided
       
     9 # by Oracle in the LICENSE file that accompanied this code.
       
    10 #
       
    11 # This code is distributed in the hope that it will be useful, but WITHOUT
       
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    14 # version 2 for more details (a copy is included in the LICENSE file that
       
    15 # accompanied this code).
       
    16 #
       
    17 # You should have received a copy of the GNU General Public License version
       
    18 # 2 along with this work; if not, write to the Free Software Foundation,
       
    19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    20 #
       
    21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    22 # or visit www.oracle.com if you need additional information or have any
       
    23 # questions.
       
    24 #
       
    25 
       
    26 # Copy icu and _dict files used by the text break iterator
       
    27 
       
    28 COPY_PATTERNS := .icu _dict .dat _options .js aliasmap .spp .wav .css \
       
    29     .png .gif .xml .dtd .txt oqlhelp.html content-types.properties
       
    30 
       
    31 # These directories should not be copied at all
       
    32 EXCLUDES += \
       
    33     java/awt/doc-files \
       
    34     java/lang/doc-files \
       
    35     javax/swing/doc-files \
       
    36     javax/swing/text/doc-files \
       
    37     javax/swing/plaf/synth/doc-files \
       
    38     javax/swing/undo/doc-files \
       
    39     sun/awt/X11/doc-files \
       
    40     sun/util/cldr/resources \
       
    41     #
       
    42 
       
    43 # These files should never be included
       
    44 EXFILES += build.xml README.txt version.txt
       
    45 
       
    46 # These icons are handled in GensrcIcons.gmk
       
    47 EXFILES += \
       
    48     sun/awt/X11/java-icon16.png \
       
    49     sun/awt/X11/java-icon24.png \
       
    50     sun/awt/X11/java-icon32.png \
       
    51     sun/awt/X11/java-icon48.png \
       
    52     $(wildcard $(JDK_TOPDIR)/src/share/classes/sun/awt/resources/*.png) \
       
    53     #
       
    54 
       
    55 ifndef OPENJDK
       
    56   # Theses icons have closed replacements
       
    57   SWING_PLAF_MOTIF_RESOURCES_DIR := $(JDK_TOPDIR)/src/share/classes/com/sun/java/swing/plaf/motif
       
    58   EXFILES += \
       
    59       $(JDK_TOPDIR)/src/share/classes/com/sun/java/swing/plaf/windows/icons/JavaCup32.png \
       
    60       $(JDK_TOPDIR)/src/share/classes/javax/swing/plaf/basic/icons/JavaCup16.png \
       
    61       $(wildcard $(SWING_PLAF_MOTIF_RESOURCES_DIR)/icons/*.gif) \
       
    62       $(wildcard $(SWING_PLAF_MOTIF_RESOURCES_DIR)/icons/*.png) \
       
    63       #
       
    64 
       
    65   EXFILES += mib_core.txt
       
    66 endif
       
    67 
       
    68 ifeq ($(ENABLE_JFR), true)
       
    69   JFR_CONFIGURATION_DIR_CLOSED := $(JDK_TOPDIR)/src/closed/share/classes/oracle/jrockit/jfr/settings
       
    70   COPY_FILES += \
       
    71       $(JFR_CONFIGURATION_DIR_CLOSED)/jfc.xsd
       
    72 endif
       
    73 
       
    74 SWING_BEANINFO_RESOURCES_SRC_DIR = $(JDK_TOPDIR)/make/data/swingbeaninfo/images
       
    75 SWING_BEANINFO_RESOURCES_SRC = $(wildcard $(SWING_BEANINFO_RESOURCES_SRC_DIR)/*.gif)
       
    76 OUT_BEANINFO_RESOURCES = $(patsubst $(SWING_BEANINFO_RESOURCES_SRC_DIR)%, \
       
    77     $(JDK_OUTPUTDIR)/classes/javax/swing/beaninfo/images/%, \
       
    78     $(SWING_BEANINFO_RESOURCES_SRC))
       
    79 
       
    80 COPY_EXTRA += $(OUT_BEANINFO_RESOURCES)
       
    81 
       
    82 # The exception handling of swing beaninfo
       
    83 # These resources violates the convention of having code and resources together under
       
    84 # $(JDK_TOPDIR)/src/.../classes directories
       
    85 $(JDK_OUTPUTDIR)/classes/javax/swing/beaninfo/images/%.gif: \
       
    86     $(JDK_TOPDIR)/make/data/swingbeaninfo/images/%.gif
       
    87 	$(call install-file)
       
    88 
       
    89 ##########################################################################################
       
    90 #
       
    91 # Copy the META-INF/services configuration files that are scattered around the source tree
       
    92 # into classes/META-INF/services. Be aware that META-INF directories that are located at a
       
    93 # source root (.../classes/META-INF) are automatically copied verbatim by the
       
    94 # SetupJavaCompilation macro.
       
    95 #
       
    96 # Any other META-INF/services configuration file is found here and platform specific comments
       
    97 # are uncommented and the configuration file is stored in the output META-INF directory.
       
    98 
       
    99 # Make sure the output directory is created.
       
   100 $(eval $(call MakeDir, $(JDK_OUTPUTDIR)/classes/META-INF/services))
       
   101 # Find all META-INF/services/* files
       
   102 ALL_META-INF_DIRS_share := $(shell $(FIND) $(JDK_TOPDIR)/src/share/classes -type d -a -name META-INF)
       
   103 ALL_META-INF_DIRS_targetapi := $(shell $(FIND) $(JDK_TOPDIR)/src/$(OPENJDK_TARGET_OS_API_DIR)/classes -type d -a -name META-INF)
       
   104 # Platform specific overrides shared
       
   105 ifneq ($(ALL_META-INF_DIRS_targetapi), )
       
   106   ALL_META-INF_DIRS := $(ALL_META-INF_DIRS_targetapi) \
       
   107       $(filter-out %$(patsubst $(JDK_TOPDIR)/src/$(OPENJDK_TARGET_OS_API_DIR)/classes%,%,$(ALL_META-INF_DIRS_targetapi)), \
       
   108       $(ALL_META-INF_DIRS_share))
       
   109 else
       
   110   ALL_META-INF_DIRS := $(ALL_META-INF_DIRS_share)
       
   111 endif
       
   112 
       
   113 SRC_SERVICES_FILES := $(wildcard $(addsuffix /services/*, $(ALL_META-INF_DIRS)))
       
   114 
       
   115 # The number of services files are relatively few. If the increase in numbers, then
       
   116 # we have to use ListPathsSafelyNow here.
       
   117 # Change $(JDK_TOPDIR)/src/.../META-INF/services/yyyy into $(JDK_OUTPUTDIR)/classes/META-INF/services/yyyy
       
   118 # The \n in the printf command is needed to make sed work on Solaris.
       
   119 OUT_SERVICES_FILES := $(addprefix $(JDK_OUTPUTDIR)/classes/META-INF/services/, \
       
   120     $(shell $(PRINTF) "$(SRC_SERVICES_FILES)\n" | $(SED) -e 's|/[^ ]*/META-INF/services/||g'))
       
   121 OUT_SERVICES_FILES_COLON := $(addsuffix :, $(OUT_SERVICES_FILES))
       
   122 # Exception handling for print services with no META-INF directory
       
   123 SRC_SERVICES_FILES_PRINT = $(wildcard $(JDK_TOPDIR)/src/$(OPENJDK_TARGET_OS_API_DIR)/classes/sun/print/services/*)
       
   124 OUT_SERVICES_FILES_PRINT = $(addprefix $(JDK_OUTPUTDIR)/classes/META-INF/services/, \
       
   125     $(patsubst $(JDK_TOPDIR)/src/$(OPENJDK_TARGET_OS_API_DIR)/classes/sun/print/services/%, %, \
       
   126     $(SRC_SERVICES_FILES_PRINT)))
       
   127 OUT_SERVICES_FILES_PRINT_COLON = $(addsuffix :, $(OUT_SERVICES_FILES_PRINT))
       
   128 RULES_SERVICES_PRINT = $(join $(OUT_SERVICES_FILES_PRINT_COLON), $(SRC_SERVICES_FILES_PRINT))
       
   129 
       
   130 # Now setup the dependency rules to generate a META-INF/services/... from the correct source.
       
   131 META-INF_RULES_SERVICES := $(RULES_SERVICES_PRINT) $(join $(OUT_SERVICES_FILES_COLON), $(SRC_SERVICES_FILES))
       
   132 # Eval the newly created rules to incorporate them into the make tree.
       
   133 define addto_meta-inf_services
       
   134   $1
       
   135 	echo $(LOG_INFO) Installing META-INF/services/$$(@F)
       
   136 	$(CAT) $$< | $(SED) -e "s/^#\[$(OPENJDK_TARGET_OS)\]//" > $$@
       
   137 endef
       
   138 $(foreach i, $(META-INF_RULES_SERVICES), $(eval $(call addto_meta-inf_services, $i)))
       
   139 # Here is the generic rule, whose receipt the above rules will trigger.
       
   140 
       
   141 COPY_EXTRA += $(OUT_SERVICES_FILES)
       
   142 COPY_EXTRA += $(OUT_SERVICES_FILES_PRINT)
       
   143 
       
   144 ################################################################################
       
   145 
       
   146 JAVAX_SOUND_SRC := $(JDK_TOPDIR)/src/share/classes/com/sun/media/sound/services
       
   147 
       
   148 JAVAX_SOUND_SRC_FILES := \
       
   149     javax.sound.midi.spi.MidiDeviceProvider \
       
   150     javax.sound.midi.spi.MidiFileReader \
       
   151     javax.sound.midi.spi.MidiFileWriter \
       
   152     javax.sound.midi.spi.SoundbankReader \
       
   153     javax.sound.sampled.spi.AudioFileReader \
       
   154     javax.sound.sampled.spi.AudioFileWriter \
       
   155     javax.sound.sampled.spi.FormatConversionProvider \
       
   156     javax.sound.sampled.spi.MixerProvider
       
   157 
       
   158 COPY_EXTRA += $(addprefix $(JDK_OUTPUTDIR)/classes/META-INF/services/, $(JAVAX_SOUND_SRC_FILES))
       
   159 
       
   160 JAVAX_SOUND_RULES := $(foreach F, $(JAVAX_SOUND_SRC_FILES), $(JDK_OUTPUTDIR)/classes/META-INF/services/$(notdir $F):$(JAVAX_SOUND_SRC)/$F)
       
   161 
       
   162 $(foreach R, $(JAVAX_SOUND_RULES), $(eval $(call addto_meta-inf_services, $R)))
       
   163 
       
   164 ################################################################################
       
   165 
       
   166 ifneq ($(OPENJDK_TARGET_OS), macosx)
       
   167   OPENJDK_TARGET_OS_FLAVORMAP_PROPERTIES = $(JDK_TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_API_DIR)/classes/sun/datatransfer/resources/flavormap.properties
       
   168 else
       
   169   OPENJDK_TARGET_OS_FLAVORMAP_PROPERTIES = $(JDK_TOPDIR)/src/java.desktop/macosx/classes/sun/datatransfer/resources/flavormap.properties
       
   170 endif
       
   171 
       
   172 $(JDK_OUTPUTDIR)/classes/sun/datatransfer/resources/flavormap.properties: $(OPENJDK_TARGET_OS_FLAVORMAP_PROPERTIES)
       
   173 	$(install-file)
       
   174 
       
   175 COPY_EXTRA += $(JDK_OUTPUTDIR)/classes/sun/datatransfer/resources/flavormap.properties
       
   176 
       
   177 ################################################################################
       
   178 
       
   179 CLEAN_FILES := $(wildcard \
       
   180     $(JDK_TOPDIR)/src/share/classes/com/sun/imageio/plugins/common/*.properties \
       
   181     $(JDK_TOPDIR)/src/share/classes/com/sun/java/util/jar/pack/*.properties \
       
   182     $(JDK_TOPDIR)/src/share/classes/com/sun/jndi/cosnaming/jndiprovider.properties \
       
   183     $(JDK_TOPDIR)/src/share/classes/com/sun/jndi/ldap/jndiprovider.properties \
       
   184     $(JDK_TOPDIR)/src/share/classes/com/sun/org/apache/xml/internal/security/resource/*.properties \
       
   185     $(JDK_TOPDIR)/src/share/classes/com/sun/rowset/*.properties \
       
   186     $(JDK_TOPDIR)/src/share/classes/com/sun/tools/script/shell/*.properties \
       
   187     $(JDK_TOPDIR)/src/share/classes/javax/sql/rowset/*.properties \
       
   188     $(JDK_TOPDIR)/src/share/classes/sun/rmi/registry/resources/*.properties \
       
   189     $(JDK_TOPDIR)/src/share/classes/sun/rmi/rmic/resources/*.properties \
       
   190     $(JDK_TOPDIR)/src/share/classes/sun/rmi/server/resources/*.properties \
       
   191     $(JDK_TOPDIR)/src/share/classes/sun/tools/javac/resources/*.properties \
       
   192     $(JDK_TOPDIR)/src/share/classes/sun/tools/jconsole/resources/*.properties \
       
   193     $(JDK_TOPDIR)/src/share/classes/sun/tools/serialver/resources/*.properties \
       
   194     )
       
   195 
       
   196 # Copy zh_HK files from zh_TW
       
   197 
       
   198 $(JDK_OUTPUTDIR)/classes/%_zh_HK.properties: $(JDK_OUTPUTDIR)/classes/%_zh_TW.properties
       
   199 	$(install-file)
       
   200 
       
   201 COPY_EXTRA += $(patsubst $(JDK_TOPDIR)/src/share/classes/%, $(JDK_OUTPUTDIR)/classes/%, \
       
   202     $(subst _zh_TW,_zh_HK, $(filter %_zh_TW.properties, $(CLEAN_FILES))))