jdk/make/gensrc/GensrcSwing.gmk
author duke
Wed, 05 Jul 2017 20:12:20 +0200
changeset 28151 abbfccd659b9
parent 27565 729f9700483a
child 32500 164fa1c0bad8
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     1
#
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
     2
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     4
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    10
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    15
# accompanied this code).
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    16
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    20
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    23
# questions.
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    24
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    25
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    26
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    27
# Generate java files for javax.swing.plaf package
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
    28
#
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    29
NIMBUS_PACKAGE = javax.swing.plaf
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    30
NIMBUS_GENSRC_DIR = $(SUPPORT_OUTPUTDIR)/gensrc/java.desktop/javax/swing/plaf/nimbus
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 23010
diff changeset
    31
NIMBUS_SKIN_FILE = $(JDK_TOPDIR)/src/java.desktop/share/classes/javax/swing/plaf/nimbus/skin.laf
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    32
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    33
$(SUPPORT_OUTPUTDIR)/gensrc/java.desktop/_the.generated_nimbus: $(NIMBUS_SKIN_FILE) $(BUILD_TOOLS_JDK)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    34
	$(MKDIR) -p $(@D)
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 12892
diff changeset
    35
	$(ECHO) "Generating Nimbus source files"
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 12892
diff changeset
    36
	$(TOOL_GENERATENIMBUS) $(LOG_INFO) \
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    37
	    -skinFile $(NIMBUS_SKIN_FILE) -buildDir $(SUPPORT_OUTPUTDIR)/gensrc/java.desktop \
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    38
	    -packagePrefix $(NIMBUS_PACKAGE).nimbus -lafName Nimbus
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 12892
diff changeset
    39
	$(ECHO) $(LOG_INFO) "Finished generating Nimbus source files"
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    40
	$(TOUCH) $@
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    41
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    42
GENSRC_SWING_NIMBUS := $(SUPPORT_OUTPUTDIR)/gensrc/java.desktop/_the.generated_nimbus
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    43
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    44
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    45
# Generate beaninfo java files
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    46
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    47
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    48
BEANINFO_OUTPUTDIR := $(SUPPORT_OUTPUTDIR)/gensrc_no_docs/java.desktop
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    49
DOCLET_DATA_DIR := $(JDK_TOPDIR)/make/data/swingbeaninfo
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    50
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    51
# javax.swing package
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
    52
BEANS = AbstractButton Box JComponent JApplet JButton \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
    53
    JCheckBox JCheckBoxMenuItem JComboBox JColorChooser \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
    54
    JDesktopPane JDialog JEditorPane JFileChooser JFrame \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
    55
    JFormattedTextField JInternalFrame JLabel JLayeredPane \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
    56
    JList JMenu JMenuBar JMenuItem JOptionPane JPanel \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
    57
    JPasswordField JPopupMenu JProgressBar JRadioButton \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
    58
    JRadioButtonMenuItem JScrollBar JScrollPane JSeparator \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
    59
    JSlider JSplitPane JSpinner JTabbedPane JTable \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
    60
    JTextArea JTextField JTextPane JToggleButton JToolBar \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
    61
    JTree JWindow
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    62
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    63
# javax.swing.text package
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    64
BEANS_TEXT = JTextComponent
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    65
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 23010
diff changeset
    66
BEANS_SRC = $(BEANS:%=$(JDK_TOPDIR)/src/java.desktop/share/classes/javax/swing/%.java) \
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 23010
diff changeset
    67
    $(BEANS_TEXT:%=$(JDK_TOPDIR)/src/java.desktop/share/classes/javax/swing/text/%.java)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    68
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    69
# Dummy variable so far, in the old build system it was false by default
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    70
SWINGBEAN_DEBUG_FLAG = false
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    71
# GenDocletBeanInfo is compiled in Tools.gmk and picks up from $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes
17504
85e7103d1e79 8011346: build-infra: While Constructing Javadoc information, JSpinner.java error: package sun.util.locale.provider does not exist
erikj
parents: 16636
diff changeset
    72
# LocaleDataMetaInfo needs to be generated before running this to avoid confusing errors
85e7103d1e79 8011346: build-infra: While Constructing Javadoc information, JSpinner.java error: package sun.util.locale.provider does not exist
erikj
parents: 16636
diff changeset
    73
# in the build log.
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    74
$(BEANINFO_OUTPUTDIR)/_the.generated_beaninfo: $(BEANS_SRC) \
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    75
    $(BEANINFO_OUTPUTDIR)/javax/swing/SwingBeanInfoBase.java \
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    76
    $(BEANINFO_OUTPUTDIR)/sun/swing/BeanInfoUtils.java $(BUILD_TOOLS_JDK)
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 12892
diff changeset
    77
	$(ECHO) Generating beaninfo
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    78
	$(MKDIR) -p $(BEANINFO_OUTPUTDIR)/javax/swing
17504
85e7103d1e79 8011346: build-infra: While Constructing Javadoc information, JSpinner.java error: package sun.util.locale.provider does not exist
erikj
parents: 16636
diff changeset
    79
	$(JAVA) -Djava.awt.headless=true $(NEW_JAVADOC) \
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 23010
diff changeset
    80
	    -sourcepath "$(subst $(SPACE),$(PATH_SEP),\
26191
a0ff4b39d34b 8055188: General cleanup of minor issues from source restructure
erikj
parents: 25859
diff changeset
    81
	        $(wildcard $(JDK_TOPDIR)/src/*/*/classes) \
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    82
	        $(SUPPORT_OUTPUTDIR)/gensrc/java.base)" \
21805
c7d7946239de 8027566: Remove the old build system
ihse
parents: 20549
diff changeset
    83
	    -doclet build.tools.swingbeaninfo.GenDocletBeanInfo \
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    84
	    -x $(SWINGBEAN_DEBUG_FLAG) -d $(BEANINFO_OUTPUTDIR)/javax/swing \
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    85
	    -t $(DOCLET_DATA_DIR)/SwingBeanInfo.template \
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    86
	    -docletpath $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
    87
	    -XDignore.symbol.file=true \
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    88
	    -classpath $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes $(BEANS_SRC) $(LOG_INFO)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
    89
        # Move the JTextComponent into its proper package directory.
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    90
	$(MKDIR) -p $(BEANINFO_OUTPUTDIR)/javax/swing/text
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    91
	$(MV) $(BEANINFO_OUTPUTDIR)/javax/swing/JTextComponentBeanInfo.java \
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    92
	    $(BEANINFO_OUTPUTDIR)/javax/swing/text/JTextComponentBeanInfo.java
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    93
	$(TOUCH) $@
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    94
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    95
# This file is the part of dt.jar
21805
c7d7946239de 8027566: Remove the old build system
ihse
parents: 20549
diff changeset
    96
# For some reason it is under $(JDK_TOPDIR)/make/data/swingbeaninfo
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 23010
diff changeset
    97
# Should it be moved under $(JDK_TOPDIR)/src/java.desktop/share/classes/javax/swing instead?
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    98
$(BEANINFO_OUTPUTDIR)/javax/swing/SwingBeanInfoBase.java: \
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
    99
    $(DOCLET_DATA_DIR)/javax/swing/SwingBeanInfoBase.java
16636
1cc691bcfe50 8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents: 15402
diff changeset
   100
	$(call install-file)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
   101
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 17504
diff changeset
   102
# This file is the part of dt.jar
21805
c7d7946239de 8027566: Remove the old build system
ihse
parents: 20549
diff changeset
   103
# For some reason it is under $(JDK_TOPDIR)/make/data/swingbeaninfo
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 23010
diff changeset
   104
# Should it be moved under $(JDK_TOPDIR)/src/java.desktop/share/classes/sun/swing instead?
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
   105
$(BEANINFO_OUTPUTDIR)/sun/swing/BeanInfoUtils.java: \
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
   106
    $(DOCLET_DATA_DIR)/sun/swing/BeanInfoUtils.java
16636
1cc691bcfe50 8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents: 15402
diff changeset
   107
	$(call install-file)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
   108
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26191
diff changeset
   109
GENSRC_SWING_BEANINFO = $(BEANINFO_OUTPUTDIR)/_the.generated_beaninfo
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 23010
diff changeset
   110
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 23010
diff changeset
   111
GENSRC_JAVA_DESKTOP += $(GENSRC_SWING_BEANINFO) $(GENSRC_SWING_NIMBUS)