jdk/make/gensrc/GensrcProperties.gmk
author erikj
Fri, 14 Mar 2014 12:31:28 +0100
changeset 23347 acb1d044a217
parent 23236 7c5997f59e20
child 25859 3317bb8137f4
permissions -rw-r--r--
8037281: Improve CacheFind and enable on all platforms Reviewed-by: tbell, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     1
#
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 21805
diff changeset
     2
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     4
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    10
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    15
# accompanied this code).
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    16
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    20
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    23
# questions.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    24
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    25
23347
acb1d044a217 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23236
diff changeset
    26
# Prepare the find cache.
acb1d044a217 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23236
diff changeset
    27
$(eval $(call FillCacheFind, $(JDK_TOPDIR)/src/share/classes \
acb1d044a217 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23236
diff changeset
    28
    $(JDK_TOPDIR)/src/windows/classes \
acb1d044a217 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23236
diff changeset
    29
    $(JDK_TOPDIR)/src/macosx/classes))
15126
bceb690ccf35 8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents: 14231
diff changeset
    30
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    31
# All .properties files to be compiled are appended to this variable.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    32
ALL_COMPILED_PROPSOURCES :=
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    33
# All generated .java files from compilation are appended to this variable.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    34
ALL_COMPILED_PROPJAVAS :=
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    35
# The (very long) command line for compilation, stored in a file, prior to use.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    36
COMPILE_PROPCMDLINE :=
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    37
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    38
define add_properties_to_compile
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    39
  # $1 is the name of the properties group
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    40
  # $2 is the files belonging to this group
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    41
  # $3 is the super class for the generated java file.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    42
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    43
  # Strip away prefix and suffix,
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    44
  # leaving for example: sun/util/resources/CurrencyNames_sv
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    45
  $1_PROPPATHS := $$(patsubst $(JDK_TOPDIR)/src/windows/classes/%.properties, %, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    46
      $$(patsubst $(JDK_TOPDIR)/src/macosx/classes/%.properties, %, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    47
      $$(patsubst $(JDK_TOPDIR)/src/share/classes/%.properties, %, $2)))
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    48
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    49
  # Accumulate all found properties files.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    50
  ALL_COMPILED_PROPSOURCES += $2
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    51
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    52
  # Generate the list of to be created java files.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    53
  ALL_COMPILED_PROPJAVAS += $$(patsubst %, $(JDK_OUTPUTDIR)/gensrc/%.java, $$($1_PROPPATHS))
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    54
23236
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    55
  # Now generate a sequence of 
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    56
  # "-compile ...CurrencyNames_sv.properties ...CurrencyNames_sv.java ListResourceBundle"
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    57
  # suitable to be fed into the CompileProperties command.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    58
  COMPILE_PROPCMDLINE += $$(subst _SPACE_,$(SPACE),$$(join $$(addprefix -compile_SPACE_, $2), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    59
      $$(addsuffix _SPACE_$(strip $3), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    60
      $$(addprefix _SPACE_$(JDK_OUTPUTDIR)/gensrc/, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    61
      $$(addsuffix .java, $$($1_PROPPATHS))))))
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    62
endef
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    63
23236
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    64
################################################################################
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    65
# Some packages have properties that need to be converted to java source files.
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    66
COMPILE_PROP_SRC_FILES := \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    67
    $(filter %.properties, $(call CacheFind, \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    68
        $(JDK_TOPDIR)/src/share/classes/com/sun/accessibility/internal/resources \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    69
        $(JDK_TOPDIR)/src/share/classes/com/sun/java/swing/plaf/motif/resources \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    70
        $(JDK_TOPDIR)/src/share/classes/com/sun/java/swing/plaf/windows/resources \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    71
        $(JDK_TOPDIR)/src/share/classes/com/sun/swing/internal/plaf/basic/resources \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    72
        $(JDK_TOPDIR)/src/share/classes/com/sun/swing/internal/plaf/metal/resources \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    73
        $(JDK_TOPDIR)/src/share/classes/com/sun/swing/internal/plaf/synth/resources \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    74
        $(JDK_TOPDIR)/src/share/classes/com/sun/tools/jdi/resources \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    75
        $(JDK_TOPDIR)/src/share/classes/sun/awt/resources \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    76
        $(JDK_TOPDIR)/src/share/classes/sun/launcher/resources \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    77
        $(JDK_TOPDIR)/src/share/classes/sun/management/resources \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    78
        $(JDK_TOPDIR)/src/share/classes/sun/print/resources \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    79
        $(JDK_TOPDIR)/src/share/classes/sun/tools/jar/resources \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    80
        $(JDK_TOPDIR)/src/share/classes/sun/util/logging/resources)) \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    81
    #
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    82
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    83
ifeq ($(OPENJDK_TARGET_OS), macosx)
23236
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    84
  COMPILE_PROP_SRC_FILES += \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    85
      $(filter %.properties, $(call CacheFind, \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    86
          $(JDK_TOPDIR)/src/macosx/classes/com/apple/laf/resources \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    87
          $(JDK_TOPDIR)/src/macosx/classes/sun/awt/resources)) \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    88
      #
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13583
diff changeset
    89
endif
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13583
diff changeset
    90
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
    91
ifeq ($(OPENJDK_TARGET_OS), windows)
23236
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    92
  COMPILE_PROP_SRC_FILES += \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    93
      $(filter %.properties, $(call CacheFind, \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    94
          $(JDK_TOPDIR)/src/windows/classes/sun/awt/windows)) \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    95
      #
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    96
else # ! windows
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    97
  COMPILE_PROP_SRC_FILES += \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    98
      $(filter %.properties, $(call CacheFind, \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
    99
          $(JDK_TOPDIR)/src/share/classes/com/sun/java/swing/plaf/gtk/resources)) \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   100
      #
20147
78e51d8fcb92 7129133: [macosx] Accelerators are displayed as Meta instead of the Command symbol
leonidr
parents: 16507
diff changeset
   101
endif
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13583
diff changeset
   102
23236
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   103
$(eval $(call add_properties_to_compile,LIST_RESOURCE_BUNDLE, \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   104
    $(COMPILE_PROP_SRC_FILES), ListResourceBundle))
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   105
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   106
# sun/util/resources
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
   107
$(eval $(call add_properties_to_compile,SUN_UTIL, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
   108
    $(filter %.properties, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
   109
    $(call CacheFind, $(JDK_TOPDIR)/src/share/classes/sun/util/resources)), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
   110
    sun.util.resources.LocaleNamesBundle))
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   111
23236
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   112
################################################################################
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   113
# Now setup the rule for the generation of the resource bundles.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
   114
$(JDK_OUTPUTDIR)/gensrc/_the.compiled_properties: $(ALL_COMPILED_PROPSOURCES) $(BUILD_TOOLS)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
   115
        # Generate all output directories in advance since the build tool does not do that...
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   116
	$(MKDIR) -p $(sort $(dir $(ALL_COMPILED_PROPJAVAS)))
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   117
	$(ECHO) Compiling $(words $(ALL_COMPILED_PROPSOURCES)) properties into resource bundles
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   118
	$(call ListPathsSafely,COMPILE_PROPCMDLINE,\n, >> $(JDK_OUTPUTDIR)/gensrc/_the.cmdline)
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   119
	$(TOOL_COMPILEPROPERTIES) -quiet @$(JDK_OUTPUTDIR)/gensrc/_the.cmdline
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   120
	$(TOUCH) $@
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   121
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
   122
$(ALL_COMPILED_PROPJAVAS): $(JDK_OUTPUTDIR)/gensrc/_the.compiled_properties
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   123
23236
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   124
################################################################################
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   125
# Some zh_HK resources are just copies of zh_TW
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   126
23236
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   127
define convert_tw_to_hk
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   128
  $(MKDIR) -p $(@D)
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   129
  $(CAT) $< | $(SED) -e '/class/s/_zh_TW/_zh_HK/' > $@
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   130
endef
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   131
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   132
$(JDK_OUTPUTDIR)/gensrc/%_zh_HK.java: $(JDK_TOPDIR)/src/share/classes/%_zh_TW.java
23236
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   133
	$(call convert_tw_to_hk)
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   134
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   135
$(JDK_OUTPUTDIR)/gensrc/%_zh_HK.java: $(JDK_OUTPUTDIR)/gensrc/%_zh_TW.java
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   136
	$(call convert_tw_to_hk)
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   137
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
   138
ZH_HK_JAVA := sun/applet/resources/MsgAppletViewer_zh_HK.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
   139
    sun/misc/resources/Messages_zh_HK.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
   140
    sun/security/util/AuthResources_zh_HK.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20147
diff changeset
   141
    sun/security/util/Resources_zh_HK.java
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   142
23236
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   143
ZH_HK_JAVA_FILES := $(addprefix $(JDK_OUTPUTDIR)/gensrc/, $(ZH_HK_JAVA)) \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   144
    $(filter-out $(JDK_OUTPUTDIR)/gensrc/sun/util/resources/zh/%, \
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   145
    $(subst _zh_TW,_zh_HK,$(filter %_zh_TW.java, $(ALL_COMPILED_PROPJAVAS))))
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   146
23236
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   147
################################################################################
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   148
23236
7c5997f59e20 8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents: 23010
diff changeset
   149
GENSRC_PROPERTIES := $(ALL_COMPILED_PROPJAVAS) $(ZH_HK_JAVA_FILES)