author | coleenp |
Fri, 09 Mar 2018 12:03:20 -0500 | |
changeset 49366 | f95ef5511e1f |
parent 48841 | 0937e5f799df |
child 49126 | f29637bb390e |
permissions | -rw-r--r-- |
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
1 |
# |
48841 | 2 |
# Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved. |
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
4 |
# |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
10 |
# |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
15 |
# accompanied this code). |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
16 |
# |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
20 |
# |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
23 |
# questions. |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
24 |
# |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
25 |
|
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
26 |
ifndef _MODULES_GMK |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
27 |
_MODULES_GMK := 1 |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
28 |
|
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
29 |
################################################################################ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
30 |
# |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
31 |
# BOOT_MODULES are modules defined by the boot loader |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
32 |
# PLATFORM_MODULES are modules defined by the platform loader |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
33 |
# JRE_TOOL_MODULES are tools included in JRE and defined by the application loader |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
34 |
# |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
35 |
# All other modules not declared below are defined by the application loader |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
36 |
# and are not included in JRE. |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
37 |
|
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
38 |
BOOT_MODULES := |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
39 |
PLATFORM_MODULES := |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
40 |
JRE_TOOL_MODULES := |
37764
63e0379dd186
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37030
diff
changeset
|
41 |
UPGRADEABLE_MODULES := |
63e0379dd186
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37030
diff
changeset
|
42 |
AGGREGATOR_MODULES := |
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
43 |
DOCS_MODULES := |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
44 |
|
36506 | 45 |
# Hook to include the corresponding custom file, if present. |
47314 | 46 |
$(eval $(call IncludeCustomExtension, common/Modules.gmk)) |
36506 | 47 |
|
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
48 |
BOOT_MODULES += \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
49 |
java.base \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
50 |
java.datatransfer \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
51 |
java.desktop \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
52 |
java.instrument \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
53 |
java.logging \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
54 |
java.management \ |
43384
0a0861e1db57
8173607: JMX RMI connector should be in its own module
dfuchs
parents:
43382
diff
changeset
|
55 |
java.management.rmi \ |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
56 |
java.naming \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
57 |
java.prefs \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
58 |
java.rmi \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
59 |
java.security.sasl \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
60 |
java.xml \ |
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
61 |
jdk.internal.vm.ci \ |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
62 |
jdk.management \ |
43382
8e0c4b44e4c0
8173608: Separate JDK management agent from java.management module
mchung
parents:
43287
diff
changeset
|
63 |
jdk.management.agent \ |
37650
ef6c24163cb2
8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents:
37030
diff
changeset
|
64 |
jdk.net \ |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
65 |
jdk.sctp \ |
36793 | 66 |
jdk.unsupported \ |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
67 |
# |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
68 |
|
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
69 |
# to be deprivileged |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
70 |
BOOT_MODULES += \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
71 |
jdk.naming.rmi \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
72 |
# |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
73 |
|
45612 | 74 |
# Modules that directly or indirectly requiring upgradeable modules |
75 |
# should carefully be considered if it should be upgradeable or not. |
|
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
76 |
UPGRADEABLE_MODULES += \ |
45612 | 77 |
java.compiler \ |
44830 | 78 |
jdk.internal.vm.compiler \ |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
79 |
# |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
80 |
|
37975
551c5d86de79
8155786: Determine modules depending on upgradeable modules directly and indirectly
erikj
parents:
37973
diff
changeset
|
81 |
|
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
82 |
AGGREGATOR_MODULES += \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
83 |
java.se \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
84 |
# |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
85 |
|
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
86 |
PLATFORM_MODULES += \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
87 |
$(UPGRADEABLE_MODULES) \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
88 |
$(AGGREGATOR_MODULES) |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
89 |
# |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
90 |
|
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
91 |
PLATFORM_MODULES += \ |
37973 | 92 |
java.scripting \ |
39820
428c076d7ddf
8159528: Deprivilege java.security.jgss, jdk.security.jgss and jdk.security.auth
weijun
parents:
39817
diff
changeset
|
93 |
java.security.jgss \ |
39612
00cf8f38916f
8161171: Missed the make/common/Modules.gmk file when integrating JDK-8154191
valeriep
parents:
38626
diff
changeset
|
94 |
java.smartcardio \ |
38626
68d286c03952
8154189: Deprivilege java.sql and java.sql.rowset module
lancea
parents:
37975
diff
changeset
|
95 |
java.sql \ |
68d286c03952
8154189: Deprivilege java.sql and java.sql.rowset module
lancea
parents:
37975
diff
changeset
|
96 |
java.sql.rowset \ |
39817 | 97 |
java.xml.crypto \ |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
98 |
jdk.accessibility \ |
37769 | 99 |
jdk.charsets \ |
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
100 |
jdk.crypto.cryptoki \ |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
101 |
jdk.crypto.ec \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
102 |
jdk.dynalink \ |
47267 | 103 |
jdk.httpserver \ |
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
104 |
jdk.incubator.httpclient \ |
47557
8b2054b7d02c
8182701: Modify JVMCI to allow Graal Compiler to expose platform MBean
jtulach
parents:
47224
diff
changeset
|
105 |
jdk.internal.vm.compiler.management \ |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
106 |
jdk.jsobject \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
107 |
jdk.localedata \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
108 |
jdk.naming.dns \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
109 |
jdk.scripting.nashorn \ |
39820
428c076d7ddf
8159528: Deprivilege java.security.jgss, jdk.security.jgss and jdk.security.auth
weijun
parents:
39817
diff
changeset
|
110 |
jdk.security.auth \ |
428c076d7ddf
8159528: Deprivilege java.security.jgss, jdk.security.jgss and jdk.security.auth
weijun
parents:
39817
diff
changeset
|
111 |
jdk.security.jgss \ |
428c076d7ddf
8159528: Deprivilege java.security.jgss, jdk.security.jgss and jdk.security.auth
weijun
parents:
39817
diff
changeset
|
112 |
jdk.xml.dom \ |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
113 |
jdk.zipfs \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
114 |
# |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
115 |
|
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
116 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
117 |
PLATFORM_MODULES += jdk.crypto.mscapi |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
118 |
endif |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
119 |
|
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
120 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
121 |
PLATFORM_MODULES += jdk.crypto.ucrypto |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
122 |
endif |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
123 |
|
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
124 |
JRE_TOOL_MODULES += \ |
36790 | 125 |
jdk.jdwp.agent \ |
42514 | 126 |
jdk.pack \ |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
127 |
jdk.scripting.nashorn.shell \ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
128 |
# |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
129 |
|
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
130 |
################################################################################ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
131 |
|
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
132 |
# DOCS_MODULES defines the root modules for javadoc generation. |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
133 |
# All of their `require transitive` modules directly and indirectly will be included. |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
134 |
DOCS_MODULES += \ |
48841 | 135 |
java.se \ |
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
136 |
java.smartcardio \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
137 |
jdk.accessibility \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
138 |
jdk.attach \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
139 |
jdk.charsets \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
140 |
jdk.compiler \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
141 |
jdk.crypto.cryptoki \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
142 |
jdk.crypto.ec \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
143 |
jdk.dynalink \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
144 |
jdk.editpad \ |
45232
1e2ad0809162
8175845: Provide javadoc descriptions for jdk.hotspot.agent module
uvangapally
parents:
45098
diff
changeset
|
145 |
jdk.hotspot.agent \ |
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
146 |
jdk.httpserver \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
147 |
jdk.incubator.httpclient \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
148 |
jdk.jartool \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
149 |
jdk.javadoc \ |
44730 | 150 |
jdk.jcmd \ |
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
151 |
jdk.jconsole \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
152 |
jdk.jdeps \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
153 |
jdk.jdi \ |
44730 | 154 |
jdk.jdwp.agent \ |
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
155 |
jdk.jlink \ |
44730 | 156 |
jdk.jsobject \ |
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
157 |
jdk.jshell \ |
44730 | 158 |
jdk.jstatd \ |
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
159 |
jdk.localedata \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
160 |
jdk.management \ |
44730 | 161 |
jdk.management.agent \ |
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
162 |
jdk.naming.dns \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
163 |
jdk.naming.rmi \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
164 |
jdk.net \ |
44730 | 165 |
jdk.pack \ |
166 |
jdk.rmic \ |
|
44725
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
167 |
jdk.scripting.nashorn \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
168 |
jdk.sctp \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
169 |
jdk.security.auth \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
170 |
jdk.security.jgss \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
171 |
jdk.xml.dom \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
172 |
jdk.zipfs \ |
8747b14eb49c
8172312: Update docs target and image for new combined docs
ihse
parents:
43925
diff
changeset
|
173 |
# |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
174 |
|
37770 | 175 |
# These modules are included in the interim image which is used to run profiling |
176 |
# before building the real images. |
|
177 |
INTERIM_IMAGE_MODULES := java.base java.logging |
|
178 |
||
47217 | 179 |
LANGTOOLS_MODULES := \ |
180 |
java.compiler \ |
|
181 |
jdk.compiler \ |
|
182 |
jdk.javadoc \ |
|
183 |
jdk.jdeps \ |
|
184 |
jdk.jshell \ |
|
185 |
# |
|
186 |
||
187 |
HOTSPOT_MODULES := \ |
|
188 |
jdk.aot \ |
|
189 |
jdk.hotspot.agent \ |
|
190 |
jdk.internal.vm.ci \ |
|
191 |
jdk.internal.vm.compiler \ |
|
192 |
# |
|
193 |
||
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
194 |
################################################################################ |
34116
b746e382da18
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33045
diff
changeset
|
195 |
# Some platforms don't have the serviceability agent |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
196 |
|
34116
b746e382da18
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33045
diff
changeset
|
197 |
ifeq ($(INCLUDE_SA), false) |
b746e382da18
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33045
diff
changeset
|
198 |
MODULES_FILTER += jdk.hotspot.agent |
b746e382da18
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33045
diff
changeset
|
199 |
endif |
b746e382da18
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33045
diff
changeset
|
200 |
|
b746e382da18
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33045
diff
changeset
|
201 |
################################################################################ |
42532 | 202 |
# Filter out Graal specific modules if Graal build is disabled |
42531
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42289
diff
changeset
|
203 |
|
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42289
diff
changeset
|
204 |
ifeq ($(INCLUDE_GRAAL), false) |
43925 | 205 |
MODULES_FILTER += jdk.internal.vm.compiler |
47557
8b2054b7d02c
8182701: Modify JVMCI to allow Graal Compiler to expose platform MBean
jtulach
parents:
47224
diff
changeset
|
206 |
MODULES_FILTER += jdk.internal.vm.compiler.management |
42531
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42289
diff
changeset
|
207 |
endif |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42289
diff
changeset
|
208 |
|
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42289
diff
changeset
|
209 |
################################################################################ |
42532 | 210 |
# Filter out aot specific modules if aot is disabled |
211 |
||
212 |
ifeq ($(ENABLE_AOT), false) |
|
213 |
MODULES_FILTER += jdk.aot |
|
214 |
endif |
|
215 |
||
216 |
################################################################################ |
|
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
217 |
# Module list macros |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
218 |
|
37030 | 219 |
# Use append so that the custom extension may add to these variables |
36506 | 220 |
|
37030 | 221 |
GENERATED_SRC_DIRS += \ |
222 |
$(SUPPORT_OUTPUTDIR)/gensrc \ |
|
223 |
# |
|
224 |
||
225 |
TOP_SRC_DIRS += \ |
|
47217 | 226 |
$(TOPDIR)/src \ |
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
227 |
# |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
228 |
|
37030 | 229 |
SRC_SUBDIRS += $(OPENJDK_TARGET_OS)/classes |
230 |
ifneq ($(OPENJDK_TARGET_OS), $(OPENJDK_TARGET_OS_TYPE)) |
|
231 |
SRC_SUBDIRS += $(OPENJDK_TARGET_OS_TYPE)/classes |
|
232 |
endif |
|
233 |
SRC_SUBDIRS += share/classes |
|
234 |
||
44733 | 235 |
SPEC_SUBDIRS += share/specs |
236 |
||
36506 | 237 |
# Find all module-info.java files for the current build target platform and |
238 |
# configuration. |
|
239 |
# Param 1 - Module to find for, set to * for finding all |
|
240 |
FindAllModuleInfos = \ |
|
47455
4c294a196030
8189376: Unsorted $(wildcard) causes instable module-deps.gmk
ihse
parents:
47314
diff
changeset
|
241 |
$(sort $(wildcard \ |
37030 | 242 |
$(foreach sub, $(SRC_SUBDIRS), \ |
243 |
$(patsubst %,%/$(strip $1)/$(sub)/module-info.java, $(TOP_SRC_DIRS))) \ |
|
47455
4c294a196030
8189376: Unsorted $(wildcard) causes instable module-deps.gmk
ihse
parents:
47314
diff
changeset
|
244 |
$(patsubst %,%/$(strip $1)/module-info.java, $(IMPORT_MODULES_SRC)))) |
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
245 |
|
41658
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
246 |
# Find module-info.java files in the specific source dir |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
247 |
# Param 1 - Src dir to find module-info.java files in |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
248 |
FindModuleInfosForSrcDir = \ |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
249 |
$(wildcard \ |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
250 |
$(foreach sub, $(SRC_SUBDIRS), \ |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
251 |
$(patsubst %,%/*/$(sub)/module-info.java, $(strip $1)) \ |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
252 |
) \ |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
253 |
$(patsubst %,%/*/module-info.java, $(strip $1)) \ |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
254 |
) |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
255 |
|
36506 | 256 |
# Extract the module names from the paths of module-info.java files. The |
257 |
# position of the module directory differs depending on if this is an imported |
|
258 |
# src dir or not. |
|
259 |
GetModuleNameFromModuleInfo = \ |
|
260 |
$(strip $(foreach mi, $1, \ |
|
261 |
$(if $(filter $(addsuffix %, $(IMPORT_MODULES_SRC)), $(mi)), \ |
|
262 |
$(notdir $(patsubst %/,%, $(dir $(mi)))), \ |
|
263 |
$(notdir $(patsubst %/,%, $(dir $(patsubst %/,%, $(dir $(patsubst %/,%, $(dir $(mi))))))))))) |
|
264 |
||
265 |
# Find all modules by looking for module-info.java files and looking at parent |
|
266 |
# directories. |
|
267 |
FindAllModules = \ |
|
268 |
$(sort $(filter-out $(MODULES_FILTER), \ |
|
269 |
$(call GetModuleNameFromModuleInfo, $(MODULE_INFOS)))) |
|
270 |
||
41658
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
271 |
# Find all modules in a specific src dir |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
272 |
# Param 1 - Src dir to find modules in |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
273 |
FindModulesForSrcDir = \ |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
274 |
$(sort $(filter-out $(MODULES_FILTER), \ |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
275 |
$(call GetModuleNameFromModuleInfo, $(call FindModuleInfosForSrcDir, $1)) \ |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
276 |
)) |
14de1ab85d25
8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents:
41653
diff
changeset
|
277 |
|
36506 | 278 |
FindImportedModules = \ |
37652
67e98335455c
8155629: MODULES_FILTER should apply to imported modules
erikj
parents:
37650
diff
changeset
|
279 |
$(filter-out $(MODULES_FILTER), \ |
67e98335455c
8155629: MODULES_FILTER should apply to imported modules
erikj
parents:
37650
diff
changeset
|
280 |
$(if $(IMPORT_MODULES_CLASSES), $(notdir $(wildcard $(IMPORT_MODULES_CLASSES)/*)))) |
26548 | 281 |
|
37030 | 282 |
# Find all source dirs for a particular module |
283 |
# $1 - Module to find source dirs for |
|
284 |
FindModuleSrcDirs = \ |
|
285 |
$(strip $(wildcard \ |
|
286 |
$(addsuffix /$(strip $1), $(GENERATED_SRC_DIRS) $(IMPORT_MODULES_SRC)) \ |
|
287 |
$(foreach sub, $(SRC_SUBDIRS), $(addsuffix /$(strip $1)/$(sub), $(TOP_SRC_DIRS))))) |
|
288 |
||
44733 | 289 |
# Find all specs dirs for a particular module |
290 |
# $1 - Module to find specs dirs for |
|
291 |
FindModuleSpecsDirs = \ |
|
292 |
$(strip $(wildcard \ |
|
293 |
$(foreach sub, $(SPEC_SUBDIRS), $(addsuffix /$(strip $1)/$(sub), $(TOP_SRC_DIRS))))) |
|
294 |
||
37030 | 295 |
# Construct the complete module source path |
296 |
GetModuleSrcPath = \ |
|
297 |
$(call PathList, \ |
|
298 |
$(addsuffix /*, $(GENERATED_SRC_DIRS) $(IMPORT_MODULES_SRC)) \ |
|
299 |
$(foreach sub, $(SRC_SUBDIRS), $(addsuffix /*/$(sub), $(TOP_SRC_DIRS)))) |
|
300 |
||
26548 | 301 |
################################################################################ |
45233
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
302 |
# Extract module dependencies from module-info.java files, both normal |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
303 |
# dependencies ("requires"), and indirect exports ("requires transitive"). |
36506 | 304 |
|
26548 | 305 |
MODULE_DEPS_MAKEFILE := $(MAKESUPPORT_OUTPUTDIR)/module-deps.gmk |
36506 | 306 |
|
307 |
MODULE_INFOS := $(call FindAllModuleInfos, *) |
|
308 |
||
309 |
$(MODULE_DEPS_MAKEFILE): $(MODULE_INFOS) \ |
|
310 |
$(call DependOnVariable, MODULE_INFOS, $(MAKESUPPORT_OUTPUTDIR)/MODULE_INFOS.vardeps) |
|
311 |
$(MKDIR) -p $(@D) |
|
312 |
$(RM) $@ |
|
313 |
$(foreach m, $(MODULE_INFOS), \ |
|
314 |
( $(PRINTF) "DEPS_$(call GetModuleNameFromModuleInfo, $m) :=" && \ |
|
315 |
$(NAWK) -v MODULE=$(call GetModuleNameFromModuleInfo, $m) '\ |
|
316 |
BEGIN { if (MODULE != "java.base") printf(" java.base"); } \ |
|
44726
04aa2c065f5c
8176785: Add build support to generate PNG file from .dot file
ihse
parents:
44725
diff
changeset
|
317 |
/^ *requires/ { sub(/;/, ""); \ |
47853
3e345eba9255
8191420: Changing "requires" to "requires static" in an application module results in build failure
erikj
parents:
47735
diff
changeset
|
318 |
sub(/requires /, " "); \ |
3e345eba9255
8191420: Changing "requires" to "requires static" in an application module results in build failure
erikj
parents:
47735
diff
changeset
|
319 |
sub(/ static /, " "); \ |
3e345eba9255
8191420: Changing "requires" to "requires static" in an application module results in build failure
erikj
parents:
47735
diff
changeset
|
320 |
sub(/ transitive /, " "); \ |
44726
04aa2c065f5c
8176785: Add build support to generate PNG file from .dot file
ihse
parents:
44725
diff
changeset
|
321 |
sub(/\/\/.*/, ""); \ |
04aa2c065f5c
8176785: Add build support to generate PNG file from .dot file
ihse
parents:
44725
diff
changeset
|
322 |
sub(/\/\*.*\*\//, ""); \ |
04aa2c065f5c
8176785: Add build support to generate PNG file from .dot file
ihse
parents:
44725
diff
changeset
|
323 |
gsub(/^ +\*.*/, ""); \ |
04aa2c065f5c
8176785: Add build support to generate PNG file from .dot file
ihse
parents:
44725
diff
changeset
|
324 |
gsub(/ /, ""); \ |
04aa2c065f5c
8176785: Add build support to generate PNG file from .dot file
ihse
parents:
44725
diff
changeset
|
325 |
printf(" %s", $$0) } \ |
45233
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
326 |
END { printf("\n") }' $m && \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
327 |
$(PRINTF) "TRANSITIVE_MODULES_$(call GetModuleNameFromModuleInfo, $m) :=" && \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
328 |
$(NAWK) -v MODULE=$(call GetModuleNameFromModuleInfo, $m) '\ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
329 |
BEGIN { if (MODULE != "java.base") printf(" java.base"); } \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
330 |
/^ *requires *transitive/ { \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
331 |
sub(/;/, ""); \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
332 |
sub(/requires/, ""); \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
333 |
sub(/transitive/, ""); \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
334 |
sub(/\/\/.*/, ""); \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
335 |
sub(/\/\*.*\*\//, ""); \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
336 |
gsub(/^ +\*.*/, ""); \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
337 |
gsub(/ /, ""); \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
338 |
printf(" %s", $$0) } \ |
44726
04aa2c065f5c
8176785: Add build support to generate PNG file from .dot file
ihse
parents:
44725
diff
changeset
|
339 |
END { printf("\n") }' $m \ |
36506 | 340 |
) >> $@ $(NEWLINE)) |
341 |
||
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
342 |
-include $(MODULE_DEPS_MAKEFILE) |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
343 |
|
45233
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
344 |
# Find dependencies ("requires") for a given module. |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
345 |
# Param 1: Module to find dependencies for. |
36506 | 346 |
FindDepsForModule = \ |
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
347 |
$(DEPS_$(strip $1)) |
36506 | 348 |
|
45233
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
349 |
# Find dependencies ("requires") transitively in 3 levels for a given module. |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
350 |
# Param 1: Module to find dependencies for. |
36506 | 351 |
FindTransitiveDepsForModule = \ |
352 |
$(sort $(call FindDepsForModule, $1) \ |
|
353 |
$(foreach m, $(call FindDepsForModule, $1), \ |
|
354 |
$(call FindDepsForModule, $m) \ |
|
355 |
$(foreach n, $(call FindDepsForModule, $m), \ |
|
356 |
$(call FindDepsForModule, $n)))) |
|
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
357 |
|
45233
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
358 |
# Find dependencies ("requires") transitively in 3 levels for a set of modules. |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
359 |
# Param 1: List of modules to find dependencies for. |
44726
04aa2c065f5c
8176785: Add build support to generate PNG file from .dot file
ihse
parents:
44725
diff
changeset
|
360 |
FindTransitiveDepsForModules = \ |
04aa2c065f5c
8176785: Add build support to generate PNG file from .dot file
ihse
parents:
44725
diff
changeset
|
361 |
$(sort $(foreach m, $1, $(call FindTransitiveDepsForModule, $m))) |
04aa2c065f5c
8176785: Add build support to generate PNG file from .dot file
ihse
parents:
44725
diff
changeset
|
362 |
|
45233
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
363 |
# Find indirect exported modules ("requires transitive") for a given module . |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
364 |
# Param 1: Module to find indirect exported modules for. |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
365 |
FindIndirectExportsForModule = \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
366 |
$(TRANSITIVE_MODULES_$(strip $1)) |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
367 |
|
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
368 |
# Finds indirect exported modules transitively in 3 levels for a given module. |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
369 |
# Param 1: Module to find indirect exported modules for. |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
370 |
FindTransitiveIndirectDepsForModule = \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
371 |
$(sort $(call FindIndirectExportsForModule, $1) \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
372 |
$(foreach m, $(call FindIndirectExportsForModule, $1), \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
373 |
$(call FindIndirectExportsForModule, $m) \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
374 |
$(foreach n, $(call FindIndirectExportsForModule, $m), \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
375 |
$(call FindIndirectExportsForModule, $n)))) |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
376 |
|
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
377 |
# Finds indirect exported modules transitively in 3 levels for a set of modules. |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
378 |
# Param 1: List of modules to find indirect exported modules for. |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
379 |
FindTransitiveIndirectDepsForModules = \ |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
380 |
$(sort $(foreach m, $1, $(call FindTransitiveIndirectDepsForModule, $m))) |
538af025db97
8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents:
45232
diff
changeset
|
381 |
|
37975
551c5d86de79
8155786: Determine modules depending on upgradeable modules directly and indirectly
erikj
parents:
37973
diff
changeset
|
382 |
# Upgradeable modules are those that are either defined as upgradeable or that |
551c5d86de79
8155786: Determine modules depending on upgradeable modules directly and indirectly
erikj
parents:
37973
diff
changeset
|
383 |
# require an upradeable module. |
551c5d86de79
8155786: Determine modules depending on upgradeable modules directly and indirectly
erikj
parents:
37973
diff
changeset
|
384 |
FindAllUpgradeableModules = \ |
48841 | 385 |
$(sort $(filter-out $(MODULES_FILTER), $(UPGRADEABLE_MODULES))) |
45612 | 386 |
|
37975
551c5d86de79
8155786: Determine modules depending on upgradeable modules directly and indirectly
erikj
parents:
37973
diff
changeset
|
387 |
|
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
388 |
################################################################################ |
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
389 |
|
42505
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42427
diff
changeset
|
390 |
LEGAL_SUBDIRS += $(OPENJDK_TARGET_OS)/legal |
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42427
diff
changeset
|
391 |
ifneq ($(OPENJDK_TARGET_OS), $(OPENJDK_TARGET_OS_TYPE)) |
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42427
diff
changeset
|
392 |
LEGAL_SUBDIRS += $(OPENJDK_TARGET_OS_TYPE)/legal |
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42427
diff
changeset
|
393 |
endif |
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42427
diff
changeset
|
394 |
LEGAL_SUBDIRS += share/legal |
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42427
diff
changeset
|
395 |
|
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42427
diff
changeset
|
396 |
# Find all legal dirs for a particular module |
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42427
diff
changeset
|
397 |
# $1 - Module to find legal dirs for |
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42427
diff
changeset
|
398 |
FindModuleLegalDirs = \ |
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42427
diff
changeset
|
399 |
$(strip $(wildcard \ |
47735
45af799ceb6a
8190725: Freetype license file provided with configure not included in images
erikj
parents:
47701
diff
changeset
|
400 |
$(addsuffix /$(strip $1), $(SUPPORT_OUTPUTDIR)/modules_legal \ |
45af799ceb6a
8190725: Freetype license file provided with configure not included in images
erikj
parents:
47701
diff
changeset
|
401 |
$(IMPORT_MODULES_LEGAL)) \ |
45af799ceb6a
8190725: Freetype license file provided with configure not included in images
erikj
parents:
47701
diff
changeset
|
402 |
$(foreach sub, $(LEGAL_SUBDIRS), $(addsuffix /$(strip $1)/$(sub), $(TOP_SRC_DIRS))) \ |
45af799ceb6a
8190725: Freetype license file provided with configure not included in images
erikj
parents:
47701
diff
changeset
|
403 |
)) |
42505
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42427
diff
changeset
|
404 |
|
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42427
diff
changeset
|
405 |
################################################################################ |
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42427
diff
changeset
|
406 |
|
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
407 |
# Param 1 - Name of module |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
408 |
define ReadSingleImportMetaData |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
409 |
ifneq ($$(wildcard $(IMPORT_MODULES_MAKE)/$$(strip $1)/build.properties), ) |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
410 |
classloader := |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
411 |
include_in_jre := |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
412 |
include_in_jdk := |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
413 |
include $(IMPORT_MODULES_MAKE)/$$(strip $1)/build.properties |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
414 |
ifeq ($$(include_in_jre), true) |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
415 |
JRE_MODULES += $1 |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
416 |
endif |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
417 |
ifeq ($$(include_in_jdk), true) |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
418 |
JDK_MODULES += $1 |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
419 |
endif |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
420 |
ifeq ($$(classloader), boot) |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
421 |
BOOT_MODULES += $1 |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
422 |
else ifeq ($$(classloader), ext) |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
423 |
PLATFORM_MODULES += $1 |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
424 |
endif |
45098
4f30865c93b0
8179105: Respect "include_in_docs" property from imported modules.
ihse
parents:
44830
diff
changeset
|
425 |
ifneq ($$(include_in_docs), false) |
4f30865c93b0
8179105: Respect "include_in_docs" property from imported modules.
ihse
parents:
44830
diff
changeset
|
426 |
# defaults to true if unspecified |
4f30865c93b0
8179105: Respect "include_in_docs" property from imported modules.
ihse
parents:
44830
diff
changeset
|
427 |
DOCS_MODULES += $1 |
4f30865c93b0
8179105: Respect "include_in_docs" property from imported modules.
ihse
parents:
44830
diff
changeset
|
428 |
endif |
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
429 |
else |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
430 |
# Default to include in all |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
431 |
JRE_MODULES += $1 |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
432 |
JDK_MODULES += $1 |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
433 |
endif |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
434 |
endef |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
435 |
|
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
436 |
# Reading the imported modules metadata has a cost, so to make it available, |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
437 |
# a makefile needs to eval-call this macro first. After calling this, the |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
438 |
# following variables are populated with data from the imported modules: |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
439 |
# * JRE_MODULES |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
440 |
# * JDK_MODULES |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
441 |
# * BOOT_MODULES |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
442 |
# * PLATFORM_MODULES |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
443 |
# * JRE_TOOL_MODULES |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
444 |
define ReadImportMetaData |
36725 | 445 |
IMPORTED_MODULES := $$(call FindImportedModules) |
446 |
$$(foreach m, $$(IMPORTED_MODULES), \ |
|
447 |
$$(eval $$(call ReadSingleImportMetaData, $$m))) |
|
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
448 |
endef |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
449 |
|
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
450 |
################################################################################ |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
451 |
|
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff
changeset
|
452 |
endif # _MODULES_GMK |