6793429: Use compiled properties instead of plain properties for resource file
authormchung
Tue, 20 Jan 2009 13:02:58 -0800
changeset 1820 04d22534971a
parent 1816 f310e059bd83
child 1821 fe2556ead537
6793429: Use compiled properties instead of plain properties for resource file Summary: Rename the variables in Resources.gmk to make compiled properties more explicit Reviewed-by: naoto, yhuang
jdk/make/com/sun/org/apache/xml/Makefile
jdk/make/com/sun/rowset/Makefile
jdk/make/common/internal/Resources.gmk
jdk/make/sun/launcher/Makefile
jdk/make/sun/rmi/oldtools/Makefile
jdk/make/sun/rmi/registry/Makefile
jdk/make/sun/rmi/rmic/Makefile
jdk/make/sun/rmi/rmid/Makefile
jdk/make/sun/serialver/Makefile
--- a/jdk/make/com/sun/org/apache/xml/Makefile	Tue Jan 13 09:21:54 2009 -0800
+++ b/jdk/make/com/sun/org/apache/xml/Makefile	Tue Jan 20 13:02:58 2009 -0800
@@ -41,7 +41,7 @@
 # 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 \
--- a/jdk/make/com/sun/rowset/Makefile	Tue Jan 13 09:21:54 2009 -0800
+++ b/jdk/make/com/sun/rowset/Makefile	Tue Jan 20 13:02:58 2009 -0800
@@ -41,7 +41,7 @@
 # Resources
 #
 LOCALE_SET_DEFINITION = jre
-RESOURCE_BUNDLES_PROPERTIES = $(PKGDIR)/RowSetResourceBundle.properties
+RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = $(PKGDIR)/RowSetResourceBundle.properties
 
 #
 # Rules
--- a/jdk/make/common/internal/Resources.gmk	Tue Jan 13 09:21:54 2009 -0800
+++ b/jdk/make/common/internal/Resources.gmk	Tue Jan 20 13:02:58 2009 -0800
@@ -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 @@
 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)
 
 #
--- a/jdk/make/sun/launcher/Makefile	Tue Jan 13 09:21:54 2009 -0800
+++ b/jdk/make/sun/launcher/Makefile	Tue Jan 20 13:02:58 2009 -0800
@@ -37,7 +37,7 @@
 # Resources
 #
 LOCALE_SET_DEFINITION = jre
-NEW_RESOURCE_BUNDLES_PROPERTIES = $(PKGDIR)/resources/launcher.properties
+NEW_RESOURCE_BUNDLES_COMPILED_PROPERTIES = $(PKGDIR)/resources/launcher.properties
 
 #
 # Rules
--- a/jdk/make/sun/rmi/oldtools/Makefile	Tue Jan 13 09:21:54 2009 -0800
+++ b/jdk/make/sun/rmi/oldtools/Makefile	Tue Jan 20 13:02:58 2009 -0800
@@ -41,7 +41,7 @@
 # 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
--- a/jdk/make/sun/rmi/registry/Makefile	Tue Jan 13 09:21:54 2009 -0800
+++ b/jdk/make/sun/rmi/registry/Makefile	Tue Jan 20 13:02:58 2009 -0800
@@ -41,7 +41,7 @@
 # Resources
 #
 LOCALE_SET_DEFINITION = jre
-RESOURCE_BUNDLES_PROPERTIES = $(PKGDIR)/resources/rmiregistry.properties
+RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = $(PKGDIR)/resources/rmiregistry.properties
 
 #
 # Rules
--- a/jdk/make/sun/rmi/rmic/Makefile	Tue Jan 13 09:21:54 2009 -0800
+++ b/jdk/make/sun/rmi/rmic/Makefile	Tue Jan 20 13:02:58 2009 -0800
@@ -43,7 +43,7 @@
 # Resources
 #
 LOCALE_SET_DEFINITION = jdk
-RESOURCE_BUNDLES_PROPERTIES = $(PKGDIR)/resources/rmic.properties
+RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = $(PKGDIR)/resources/rmic.properties
 
 #
 # Rules
--- a/jdk/make/sun/rmi/rmid/Makefile	Tue Jan 13 09:21:54 2009 -0800
+++ b/jdk/make/sun/rmi/rmid/Makefile	Tue Jan 20 13:02:58 2009 -0800
@@ -39,7 +39,7 @@
 # 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.
--- a/jdk/make/sun/serialver/Makefile	Tue Jan 13 09:21:54 2009 -0800
+++ b/jdk/make/sun/serialver/Makefile	Tue Jan 20 13:02:58 2009 -0800
@@ -41,7 +41,7 @@
 # Resources
 #
 LOCALE_SET_DEFINITION = jdk
-RESOURCE_BUNDLES_PROPERTIES = $(PKGDIR)/resources/serialver.properties 
+RESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = $(PKGDIR)/resources/serialver.properties 
 
 #
 # Rules