6793429: Use compiled properties instead of plain properties for resource file
Rename the variables in Resources.gmk to make compiled properties more explicit Reviewed-by: naoto, yhuang
This commit is contained in:
parent
4a82a1723e
commit
11431a6329
@ -41,7 +41,7 @@ AUTO_FILES_JAVA_DIRS = com/sun/org/apache/xml
|
||||
# Resources
|
||||
#
|
||||
LOCALE_SET_DEFINITION = jre
|
||||
NEW_RESOURCE_BUNDLES_PROPERTIES = \
|
||||
NEW_RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = \
|
||||
$(PKGDIR)/internal/security/resource/config.dtd \
|
||||
$(PKGDIR)/internal/security/resource/config.xml \
|
||||
$(PKGDIR)/internal/security/resource/xmlsecurity_de.properties \
|
||||
|
@ -41,7 +41,7 @@ AUTO_FILES_JAVA_DIRS = com/sun/rowset
|
||||
# Resources
|
||||
#
|
||||
LOCALE_SET_DEFINITION = jre
|
||||
RESOURCE_BUNDLES_PROPERTIES = $(PKGDIR)/RowSetResourceBundle.properties
|
||||
RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = $(PKGDIR)/RowSetResourceBundle.properties
|
||||
|
||||
#
|
||||
# Rules
|
||||
|
@ -44,12 +44,8 @@
|
||||
#
|
||||
# NEW_RESOURCE_BUNDLES_JAVA - new resource bundles implemented in
|
||||
# Java, not localized
|
||||
# NEW_RESOURCE_BUNDLES_PROPERTIES - new resource bundles implemented as
|
||||
# properties files, not localized
|
||||
# RESOURCE_BUNDLES_JAVA - resource bundles implemented in
|
||||
# Java, localized
|
||||
# RESOURCE_BUNDLES_PROPERTIES - new resource bundles implemented as
|
||||
# properties files, localized
|
||||
#
|
||||
# The following variable is now used for most .properties files in the JDK.
|
||||
# These properties files are converted into java and compiled with javac.
|
||||
@ -61,6 +57,13 @@
|
||||
# properties files, localized
|
||||
# NEW_RESOURCE_BUNDLES_COMPILED_PROPERTIES - same as above, not localized
|
||||
#
|
||||
# For non-compiled properties files, use the following variables:
|
||||
#
|
||||
# NEW_RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES - new resource bundles implemented as
|
||||
# properties files, not localized
|
||||
# RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES - resource bundles implemented as
|
||||
# properties files, localized
|
||||
#
|
||||
# Other properties files to be installed are identified using the variable:
|
||||
#
|
||||
# OTHER_PROPERTIES
|
||||
@ -109,11 +112,12 @@ COMPILED_PROPERTIES += $(RESOURCE_BUNDLES_COMPILED_PROPERTIES) \
|
||||
FILES_java += $(COMPILED_PROPERTIES:%.properties=%.java)
|
||||
|
||||
# Non-compiled files
|
||||
PROPERTIES_FILES += $(NEW_RESOURCE_BUNDLES_PROPERTIES)
|
||||
PROPERTIES_FILES += $(RESOURCE_BUNDLES_PROPERTIES) \
|
||||
$(foreach file,$(RESOURCE_BUNDLES_PROPERTIES), \
|
||||
PROPERTIES_FILES += $(NEW_RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES)
|
||||
PROPERTIES_FILES += $(RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES) \
|
||||
$(foreach file,$(RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES), \
|
||||
$(foreach locale,$(LOCALE_SUFFIXES), \
|
||||
$(basename $(file))_$(locale)$(suffix $(file))))
|
||||
# other properties
|
||||
PROPERTIES_FILES += $(OTHER_PROPERTIES)
|
||||
|
||||
#
|
||||
|
@ -37,7 +37,7 @@ AUTO_FILES_JAVA_DIRS = sun/launcher
|
||||
# Resources
|
||||
#
|
||||
LOCALE_SET_DEFINITION = jre
|
||||
NEW_RESOURCE_BUNDLES_PROPERTIES = $(PKGDIR)/resources/launcher.properties
|
||||
NEW_RESOURCE_BUNDLES_COMPILED_PROPERTIES = $(PKGDIR)/resources/launcher.properties
|
||||
|
||||
#
|
||||
# Rules
|
||||
|
@ -41,7 +41,7 @@ include FILES_java.gmk
|
||||
# Resources
|
||||
#
|
||||
LOCALE_SET_DEFINITION = j2sdk
|
||||
RESOURCE_BUNDLES_PROPERTIES = sun/tools/javac/resources/javac.properties
|
||||
RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = sun/tools/javac/resources/javac.properties
|
||||
|
||||
#
|
||||
# Rules
|
||||
|
@ -41,7 +41,7 @@ AUTO_FILES_JAVA_DIRS = sun/rmi/registry
|
||||
# Resources
|
||||
#
|
||||
LOCALE_SET_DEFINITION = jre
|
||||
RESOURCE_BUNDLES_PROPERTIES = $(PKGDIR)/resources/rmiregistry.properties
|
||||
RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = $(PKGDIR)/resources/rmiregistry.properties
|
||||
|
||||
#
|
||||
# Rules
|
||||
|
@ -43,7 +43,7 @@ FILES_java = $(RMIC_java)
|
||||
# Resources
|
||||
#
|
||||
LOCALE_SET_DEFINITION = jdk
|
||||
RESOURCE_BUNDLES_PROPERTIES = $(PKGDIR)/resources/rmic.properties
|
||||
RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = $(PKGDIR)/resources/rmic.properties
|
||||
|
||||
#
|
||||
# Rules
|
||||
|
@ -39,7 +39,7 @@ build: stubs
|
||||
# Resources
|
||||
#
|
||||
LOCALE_SET_DEFINITION = jre
|
||||
RESOURCE_BUNDLES_PROPERTIES = sun/rmi/server/resources/rmid.properties
|
||||
RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = sun/rmi/server/resources/rmid.properties
|
||||
|
||||
#
|
||||
# Extra dependencies.
|
||||
|
@ -41,7 +41,7 @@ AUTO_FILES_JAVA_DIRS = sun/tools/serialver
|
||||
# Resources
|
||||
#
|
||||
LOCALE_SET_DEFINITION = jdk
|
||||
RESOURCE_BUNDLES_PROPERTIES = $(PKGDIR)/resources/serialver.properties
|
||||
RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = $(PKGDIR)/resources/serialver.properties
|
||||
|
||||
#
|
||||
# Rules
|
||||
|
Loading…
x
Reference in New Issue
Block a user