make/ToolsJdk.gmk
author rriggs
Wed, 02 Oct 2019 13:57:03 -0400
changeset 58446 5c83830390ba
parent 55215 29ab1f3bd353
child 58679 9c3209ff7550
permissions -rw-r--r--
8231663: Incorrect GPL header in some RMI/SQL package-info.java files Reviewed-by: bpb, iris, lancea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     1
#
55013
8dae495a59e7 8221431: Support for Unicode 12.1
naoto
parents: 52940
diff changeset
     2
# Copyright (c) 2011, 2019, 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
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 25397
diff changeset
    26
ifndef _TOOLS_GMK
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 25397
diff changeset
    27
_TOOLS_GMK := 1
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 25397
diff changeset
    28
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 25397
diff changeset
    29
include JavaCompilation.gmk
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 25397
diff changeset
    30
44760
61b03b960583 8038893: Recertify certificate matching
mullan
parents: 41472
diff changeset
    31
# Hook to include the corresponding custom file, if present.
47314
743814386712 8188814: Simplify IncludeCustomExtension
ihse
parents: 47217
diff changeset
    32
$(eval $(call IncludeCustomExtension, Tools.gmk))
44760
61b03b960583 8038893: Recertify certificate matching
mullan
parents: 41472
diff changeset
    33
28658
344426303820 8055190: Cleanup include and exclude of core-libs native libraries after source code restructure
erikj
parents: 27565
diff changeset
    34
################################################################################
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 32515
diff changeset
    35
# To avoid reevaluating the compilation setup for the tools each time this file
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 32515
diff changeset
    36
# is included, the actual compilation is handled by CompileTools.gmk. The
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 32515
diff changeset
    37
# following trick is used to be able to declare a dependency on the built tools.
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 32515
diff changeset
    38
BUILD_TOOLS_JDK := $(call SetupJavaCompilationCompileTarget, \
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 32515
diff changeset
    39
    BUILD_TOOLS_JDK, $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes)
15693
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15689
diff changeset
    40
28658
344426303820 8055190: Cleanup include and exclude of core-libs native libraries after source code restructure
erikj
parents: 27565
diff changeset
    41
################################################################################
15693
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15689
diff changeset
    42
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    43
TOOL_COMPILEFONTCONFIG = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
47364
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 47314
diff changeset
    44
    --add-exports java.desktop/sun.awt=ALL-UNNAMED \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    45
    build.tools.compilefontconfig.CompileFontConfig
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    46
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    47
TOOL_COMPILEPROPERTIES = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    48
    build.tools.compileproperties.CompileProperties
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    49
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    50
TOOL_GENERATECHARACTER = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    51
    build.tools.generatecharacter.GenerateCharacter
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    52
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    53
TOOL_CHARACTERNAME = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    54
    build.tools.generatecharacter.CharacterName
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    55
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    56
TOOL_DTDBUILDER = $(JAVA_SMALL) -Ddtd_home=$(TOPDIR)/make/data/dtdbuilder \
23568
c92e1347bcac 8038027: DTDBuilder should be run in headless mode
ihse
parents: 23350
diff changeset
    57
    -Djava.awt.headless=true \
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    58
    -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes build.tools.dtdbuilder.DTDBuilder
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    59
23350
0aac9866d9e5 8010767: Build fails on OEL6 with 16 cores
erikj
parents: 23347
diff changeset
    60
TOOL_GENERATEBREAKITERATORDATA = $(JAVA_SMALL) \
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    61
    -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    62
    build.tools.generatebreakiteratordata.GenerateBreakIteratorData
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    63
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    64
TOOL_GENERATECURRENCYDATA = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    65
    build.tools.generatecurrencydata.GenerateCurrencyData
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    66
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    67
TOOL_TZDB = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    68
    build.tools.tzdb.TzdbZoneRulesCompiler
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents: 15129
diff changeset
    69
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    70
TOOL_BLACKLISTED_CERTS = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
25397
26482834c5bc 8047765: Generate blacklist.certs in build
weijun
parents: 23568
diff changeset
    71
    build.tools.blacklistedcertsconverter.BlacklistedCertsConverter
26482834c5bc 8047765: Generate blacklist.certs in build
weijun
parents: 23568
diff changeset
    72
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    73
TOOL_MAKEJAVASECURITY = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
25974
850dc36ea410 6997010: Consolidate java.security files into one file with modifications
weijun
parents: 25397
diff changeset
    74
    build.tools.makejavasecurity.MakeJavaSecurity
850dc36ea410 6997010: Consolidate java.security files into one file with modifications
weijun
parents: 25397
diff changeset
    75
55215
29ab1f3bd353 8193255: Root Certificates should be stored in text format and assembled at build time
weijun
parents: 55112
diff changeset
    76
TOOL_GENERATECACERTS = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
29ab1f3bd353 8193255: Root Certificates should be stored in text format and assembled at build time
weijun
parents: 55112
diff changeset
    77
    build.tools.generatecacerts.GenerateCacerts
29ab1f3bd353 8193255: Root Certificates should be stored in text format and assembled at build time
weijun
parents: 55112
diff changeset
    78
55013
8dae495a59e7 8221431: Support for Unicode 12.1
naoto
parents: 52940
diff changeset
    79
TOOL_GENERATEEMOJIDATA = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
8dae495a59e7 8221431: Support for Unicode 12.1
naoto
parents: 52940
diff changeset
    80
    build.tools.generateemojidata.GenerateEmojiData
8dae495a59e7 8221431: Support for Unicode 12.1
naoto
parents: 52940
diff changeset
    81
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents: 15129
diff changeset
    82
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    83
# TODO: There are references to the jdwpgen.jar in jdk/make/netbeans/jdwpgen/build.xml
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    84
# and nbproject/project.properties in the same dir. Needs to be looked at.
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    85
TOOL_JDWPGEN = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes build.tools.jdwpgen.Main
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    86
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    87
# TODO: Lots of files in jdk/make/tools/CharsetMapping dir
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    88
TOOL_CHARSETMAPPING = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
22639
37f4508257fe 8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents: 22046
diff changeset
    89
    build.tools.charsetmapping.Main $(LOG_INFO)
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    90
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    91
TOOL_SPP = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes build.tools.spp.Spp
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    92
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    93
# Nimbus is used somewhere in the swing build.
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    94
TOOL_GENERATENIMBUS = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    95
    build.tools.generatenimbus.Generator
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    96
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
    97
TOOL_WRAPPERGENERATOR = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
22967
bfcfd51c9e5c 8034193: Move X11 wrapper generator files to make/src and make/data
erikj
parents: 22650
diff changeset
    98
    build.tools.x11wrappergen.WrapperGenerator
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    99
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
   100
TOOL_AWT_TOBIN = $(JAVA_SMALL) -Djava.awt.headless=true -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
21805
c7d7946239de 8027566: Remove the old build system
ihse
parents: 21130
diff changeset
   101
    build.tools.icondata.awt.ToBin
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   102
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
   103
TOOL_OSX_TOBIN = $(JAVA_SMALL) -Djava.awt.headless=true -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
21805
c7d7946239de 8027566: Remove the old build system
ihse
parents: 21130
diff changeset
   104
    build.tools.icondata.osxapp.ToBin
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   105
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
   106
TOOL_CLDRCONVERTER = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   107
    build.tools.cldrconverter.CLDRConverter
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 13164
diff changeset
   108
46042
a614479300d8 8177472: Remove hard-coded IANA Subtag Registry map in LocaleEquivalentMap.java
nishjain
parents: 44760
diff changeset
   109
TOOL_GENERATELSREQUIVMAPS = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
a614479300d8 8177472: Remove hard-coded IANA Subtag Registry map in LocaleEquivalentMap.java
nishjain
parents: 44760
diff changeset
   110
    build.tools.generatelsrequivmaps.EquivMapsGenerator
a614479300d8 8177472: Remove hard-coded IANA Subtag Registry map in LocaleEquivalentMap.java
nishjain
parents: 44760
diff changeset
   111
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 36000
diff changeset
   112
TOOL_GENMODULEINFOSOURCE = $(JAVA_SMALL) $(INTERIM_LANGTOOLS_BOOTCLASSPATH) \
9d0388c6b336 8142968: Module System implementation
alanb
parents: 36000
diff changeset
   113
    -cp $(call PathList, $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes) \
9d0388c6b336 8142968: Module System implementation
alanb
parents: 36000
diff changeset
   114
    build.tools.module.GenModuleInfoSource
9d0388c6b336 8142968: Module System implementation
alanb
parents: 36000
diff changeset
   115
9d0388c6b336 8142968: Module System implementation
alanb
parents: 36000
diff changeset
   116
TOOL_GENCLASSLOADERMAP = $(JAVA_SMALL) $(INTERIM_LANGTOOLS_BOOTCLASSPATH) \
9d0388c6b336 8142968: Module System implementation
alanb
parents: 36000
diff changeset
   117
    -cp $(call PathList, $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes) \
9d0388c6b336 8142968: Module System implementation
alanb
parents: 36000
diff changeset
   118
    build.tools.module.GenModuleLoaderMap
9d0388c6b336 8142968: Module System implementation
alanb
parents: 36000
diff changeset
   119
50788
6274aee1f692 8201815: Use Mozilla Public Suffix List
weijun
parents: 48841
diff changeset
   120
TOOL_PUBLICSUFFIXLIST = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
6274aee1f692 8201815: Use Mozilla Public Suffix List
weijun
parents: 48841
diff changeset
   121
    build.tools.publicsuffixlist.GeneratePublicSuffixList
6274aee1f692 8201815: Use Mozilla Public Suffix List
weijun
parents: 48841
diff changeset
   122
55112
ad4285992012 8224257: fix issues in files generated by pandoc
jjg
parents: 55013
diff changeset
   123
TOOL_FIXUPPANDOC = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
ad4285992012 8224257: fix issues in files generated by pandoc
jjg
parents: 55013
diff changeset
   124
    build.tools.fixuppandoc.Main
ad4285992012 8224257: fix issues in files generated by pandoc
jjg
parents: 55013
diff changeset
   125
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 36000
diff changeset
   126
##########################################################################################
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26227
diff changeset
   127
52714
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 51723
diff changeset
   128
# Executable javascript filter for man page generation using pandoc.
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 51723
diff changeset
   129
52940
26e2cfebcfba 8214720: Add pandoc filter to improve html man page output
ihse
parents: 52714
diff changeset
   130
PANDOC_TROFF_MANPAGE_FILTER := $(BUILDTOOLS_OUTPUTDIR)/manpages/pandoc-troff-manpage-filter
26e2cfebcfba 8214720: Add pandoc filter to improve html man page output
ihse
parents: 52714
diff changeset
   131
PANDOC_HTML_MANPAGE_FILTER := $(BUILDTOOLS_OUTPUTDIR)/manpages/pandoc-html-manpage-filter
52714
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 51723
diff changeset
   132
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 51723
diff changeset
   133
##########################################################################################
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 51723
diff changeset
   134
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 25397
diff changeset
   135
endif # _TOOLS_GMK