make/common/Modules.gmk
author erikj
Tue, 29 Oct 2019 12:01:14 -0700
changeset 58846 f9ac726ab347
parent 57804 9b7b9f16dfd9
child 58921 d92acb18e300
permissions -rw-r--r--
8232748: Build static versions of certain JDK libraries Reviewed-by: ihse, bobv
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26116
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff changeset
     1
#
57804
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 53683
diff changeset
     2
# Copyright (c) 2014, 2019, 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
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
    45
# Hook to include the corresponding custom file, if present.
47314
743814386712 8188814: Simplify IncludeCustomExtension
ihse
parents: 47267
diff changeset
    46
$(eval $(call IncludeCustomExtension, common/Modules.gmk))
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
    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 \
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 49801
diff changeset
    62
    jdk.jfr \
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    63
    jdk.management \
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 49801
diff changeset
    64
    jdk.management.jfr \
43382
8e0c4b44e4c0 8173608: Separate JDK management agent from java.management module
mchung
parents: 43287
diff changeset
    65
    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
    66
    jdk.net \
57804
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 53683
diff changeset
    67
    jdk.nio.mapmode \
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    68
    jdk.sctp \
36793
8b116f192318 8153737: Unsupported Module
chegar
parents: 36790
diff changeset
    69
    jdk.unsupported \
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    70
    #
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    71
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    72
# to be deprivileged
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    73
BOOT_MODULES += \
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    74
    jdk.naming.rmi \
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    75
    #
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    76
45612
3368f6d8b082 8182032: Make java.compiler upgradeable
mchung
parents: 45509
diff changeset
    77
# Modules that directly or indirectly requiring upgradeable modules
3368f6d8b082 8182032: Make java.compiler upgradeable
mchung
parents: 45509
diff changeset
    78
# 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
    79
UPGRADEABLE_MODULES += \
45612
3368f6d8b082 8182032: Make java.compiler upgradeable
mchung
parents: 45509
diff changeset
    80
    java.compiler \
50587
20952ce32591 8205025: [AOT] make jdk.aot module upgradeable
dnsimon
parents: 50113
diff changeset
    81
    jdk.aot \
44830
65c7a535e272 8177845: Need a mechanism to load Graal
dnsimon
parents: 44733
diff changeset
    82
    jdk.internal.vm.compiler \
49801
466d4df248a6 8187490: HotSpotGraalMBean should be moved to Graal management module
dnsimon
parents: 49765
diff changeset
    83
    jdk.internal.vm.compiler.management \
36543
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
37975
551c5d86de79 8155786: Determine modules depending on upgradeable modules directly and indirectly
erikj
parents: 37973
diff changeset
    86
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    87
AGGREGATOR_MODULES += \
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    88
    java.se \
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 += \
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    92
    $(UPGRADEABLE_MODULES) \
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    93
    $(AGGREGATOR_MODULES)
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    94
    #
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    95
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
    96
PLATFORM_MODULES += \
49765
ee6f7a61f3a5 8197564: HTTP Client implementation
chegar
parents: 49537
diff changeset
    97
    java.net.http \
37973
922326ad0c94 8154192: Deprivilege java.scripting module
sundar
parents: 37770
diff changeset
    98
    java.scripting \
39820
428c076d7ddf 8159528: Deprivilege java.security.jgss, jdk.security.jgss and jdk.security.auth
weijun
parents: 39817
diff changeset
    99
    java.security.jgss \
39612
00cf8f38916f 8161171: Missed the make/common/Modules.gmk file when integrating JDK-8154191
valeriep
parents: 38626
diff changeset
   100
    java.smartcardio \
38626
68d286c03952 8154189: Deprivilege java.sql and java.sql.rowset module
lancea
parents: 37975
diff changeset
   101
    java.sql \
68d286c03952 8154189: Deprivilege java.sql and java.sql.rowset module
lancea
parents: 37975
diff changeset
   102
    java.sql.rowset \
49126
f29637bb390e 8197533: Move javax.transaction.xa to its own module
lancea
parents: 48841
diff changeset
   103
    java.transaction.xa \
39817
2689bb7db9fc 8159488: Deprivilege java.xml.crypto
valeriep
parents: 39612
diff changeset
   104
    java.xml.crypto \
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   105
    jdk.accessibility \
37769
96f9a38fb70e 8155513: Deprivilege jdk.charsets
mchung
parents: 37768
diff changeset
   106
    jdk.charsets \
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   107
    jdk.crypto.cryptoki \
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   108
    jdk.crypto.ec \
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   109
    jdk.dynalink \
47267
b3a91921bafc 8159526: Deprivilege jdk.httpserver
vtewari
parents: 47224
diff changeset
   110
    jdk.httpserver \
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   111
    jdk.jsobject \
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   112
    jdk.localedata \
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   113
    jdk.naming.dns \
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   114
    jdk.scripting.nashorn \
39820
428c076d7ddf 8159528: Deprivilege java.security.jgss, jdk.security.jgss and jdk.security.auth
weijun
parents: 39817
diff changeset
   115
    jdk.security.auth \
428c076d7ddf 8159528: Deprivilege java.security.jgss, jdk.security.jgss and jdk.security.auth
weijun
parents: 39817
diff changeset
   116
    jdk.security.jgss \
428c076d7ddf 8159528: Deprivilege java.security.jgss, jdk.security.jgss and jdk.security.auth
weijun
parents: 39817
diff changeset
   117
    jdk.xml.dom \
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   118
    jdk.zipfs \
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   119
    #
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   120
53683
48ff68e2fe5c 8218431: Improved platform checking in makefiles
ihse
parents: 52714
diff changeset
   121
ifeq ($(call isTargetOs, windows), true)
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   122
  PLATFORM_MODULES += jdk.crypto.mscapi
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   123
endif
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   124
53683
48ff68e2fe5c 8218431: Improved platform checking in makefiles
ihse
parents: 52714
diff changeset
   125
ifeq ($(call isTargetOs, solaris), true)
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   126
  PLATFORM_MODULES += jdk.crypto.ucrypto
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   127
endif
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   128
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   129
JRE_TOOL_MODULES += \
36790
7191e0b1537e 8153660: jwdp.so/dll missing from JRE image
erikj
parents: 36725
diff changeset
   130
    jdk.jdwp.agent \
42514
d5c5e07498ef 8171201: Drop java.compact$N aggregator modules
mchung
parents: 42505
diff changeset
   131
    jdk.pack \
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   132
    jdk.scripting.nashorn.shell \
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   133
    #
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   134
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   135
################################################################################
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   136
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   137
# 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
   138
# 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
   139
DOCS_MODULES += \
48841
0937e5f799df 8190378: Removal of CORBA and Java EE modules
lancea
parents: 47853
diff changeset
   140
    java.se \
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   141
    java.smartcardio \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   142
    jdk.accessibility \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   143
    jdk.attach \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   144
    jdk.charsets \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   145
    jdk.compiler \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   146
    jdk.crypto.cryptoki \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   147
    jdk.crypto.ec \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   148
    jdk.dynalink \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   149
    jdk.editpad \
45232
1e2ad0809162 8175845: Provide javadoc descriptions for jdk.hotspot.agent module
uvangapally
parents: 45098
diff changeset
   150
    jdk.hotspot.agent \
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   151
    jdk.httpserver \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   152
    jdk.jartool \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   153
    jdk.javadoc \
44730
6b9ded7dc4ab 8179035: Include tool modules in unified docs
mchung
parents: 44726
diff changeset
   154
    jdk.jcmd \
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   155
    jdk.jconsole \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   156
    jdk.jdeps \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   157
    jdk.jdi \
44730
6b9ded7dc4ab 8179035: Include tool modules in unified docs
mchung
parents: 44726
diff changeset
   158
    jdk.jdwp.agent \
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 49801
diff changeset
   159
    jdk.jfr \
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   160
    jdk.jlink \
44730
6b9ded7dc4ab 8179035: Include tool modules in unified docs
mchung
parents: 44726
diff changeset
   161
    jdk.jsobject \
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   162
    jdk.jshell \
44730
6b9ded7dc4ab 8179035: Include tool modules in unified docs
mchung
parents: 44726
diff changeset
   163
    jdk.jstatd \
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   164
    jdk.localedata \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   165
    jdk.management \
44730
6b9ded7dc4ab 8179035: Include tool modules in unified docs
mchung
parents: 44726
diff changeset
   166
    jdk.management.agent \
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 49801
diff changeset
   167
    jdk.management.jfr \
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   168
    jdk.naming.dns \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   169
    jdk.naming.rmi \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   170
    jdk.net \
44730
6b9ded7dc4ab 8179035: Include tool modules in unified docs
mchung
parents: 44726
diff changeset
   171
    jdk.pack \
6b9ded7dc4ab 8179035: Include tool modules in unified docs
mchung
parents: 44726
diff changeset
   172
    jdk.rmic \
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   173
    jdk.scripting.nashorn \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   174
    jdk.sctp \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   175
    jdk.security.auth \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   176
    jdk.security.jgss \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   177
    jdk.xml.dom \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   178
    jdk.zipfs \
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 43925
diff changeset
   179
    #
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   180
37770
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37769
diff changeset
   181
# These modules are included in the interim image which is used to run profiling
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37769
diff changeset
   182
# before building the real images.
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37769
diff changeset
   183
INTERIM_IMAGE_MODULES := java.base java.logging
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37769
diff changeset
   184
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   185
LANGTOOLS_MODULES := \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   186
    java.compiler \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   187
    jdk.compiler \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   188
    jdk.javadoc \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   189
    jdk.jdeps \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   190
    jdk.jshell \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   191
    #
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   192
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   193
HOTSPOT_MODULES := \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   194
    jdk.aot \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   195
    jdk.hotspot.agent \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   196
    jdk.internal.vm.ci \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   197
    jdk.internal.vm.compiler \
49801
466d4df248a6 8187490: HotSpotGraalMBean should be moved to Graal management module
dnsimon
parents: 49765
diff changeset
   198
    jdk.internal.vm.compiler.management \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   199
    #
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   200
58846
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   201
# The native dynamic libraries in these modules will also get built into static
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   202
# libraries for consumption by downstream projects that need to statically link
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   203
# the JDK libraries. Those static libraries are not part of the main JDK
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   204
# distribution. 
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   205
STATIC_LIBS_MODULES := \
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   206
    java.base \
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   207
    jdk.crypto.ec \
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   208
    jdk.security.auth \
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   209
    java.prefs \
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   210
    java.security.jgss \
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   211
    java.smartcardio \
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   212
    jdk.crypto.cryptoki \
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   213
    jdk.net \
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   214
    #
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57804
diff changeset
   215
26116
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff changeset
   216
################################################################################
34116
b746e382da18 8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents: 33045
diff changeset
   217
# 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
   218
34116
b746e382da18 8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents: 33045
diff changeset
   219
ifeq ($(INCLUDE_SA), false)
b746e382da18 8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents: 33045
diff changeset
   220
  MODULES_FILTER += jdk.hotspot.agent
b746e382da18 8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents: 33045
diff changeset
   221
endif
b746e382da18 8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents: 33045
diff changeset
   222
b746e382da18 8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents: 33045
diff changeset
   223
################################################################################
51030
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50587
diff changeset
   224
# Filter out jvmci specific modules if jvmci is disabled
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50587
diff changeset
   225
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50587
diff changeset
   226
ifeq ($(INCLUDE_JVMCI), false)
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50587
diff changeset
   227
  MODULES_FILTER += jdk.internal.vm.ci
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50587
diff changeset
   228
endif
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50587
diff changeset
   229
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50587
diff changeset
   230
################################################################################
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50587
diff changeset
   231
# Filter out Graal specific modules if Graal is disabled
42531
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42289
diff changeset
   232
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42289
diff changeset
   233
ifeq ($(INCLUDE_GRAAL), false)
43925
3c0049f39b20 8174879: Rename jdk.vm.ci to jdk.internal.vm.ci
kvn
parents: 43663
diff changeset
   234
  MODULES_FILTER += jdk.internal.vm.compiler
47557
8b2054b7d02c 8182701: Modify JVMCI to allow Graal Compiler to expose platform MBean
jtulach
parents: 47224
diff changeset
   235
  MODULES_FILTER += jdk.internal.vm.compiler.management
42531
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42289
diff changeset
   236
endif
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42289
diff changeset
   237
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42289
diff changeset
   238
################################################################################
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   239
# Filter out aot specific modules if aot is disabled
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   240
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   241
ifeq ($(ENABLE_AOT), false)
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   242
  MODULES_FILTER += jdk.aot
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   243
endif
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   244
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   245
################################################################################
26116
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff changeset
   246
# Module list macros
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff changeset
   247
37030
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   248
# Use append so that the custom extension may add to these variables
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   249
37030
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   250
GENERATED_SRC_DIRS += \
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   251
    $(SUPPORT_OUTPUTDIR)/gensrc \
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   252
    #
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   253
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   254
TOP_SRC_DIRS += \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45612
diff changeset
   255
    $(TOPDIR)/src \
26116
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff changeset
   256
    #
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff changeset
   257
37030
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   258
SRC_SUBDIRS += $(OPENJDK_TARGET_OS)/classes
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   259
ifneq ($(OPENJDK_TARGET_OS), $(OPENJDK_TARGET_OS_TYPE))
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   260
  SRC_SUBDIRS += $(OPENJDK_TARGET_OS_TYPE)/classes
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   261
endif
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   262
SRC_SUBDIRS += share/classes
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   263
44733
6505f00be6f2 8178038: Copy jdwp-protocol.html to proper location
ihse
parents: 44730
diff changeset
   264
SPEC_SUBDIRS += share/specs
6505f00be6f2 8178038: Copy jdwp-protocol.html to proper location
ihse
parents: 44730
diff changeset
   265
52714
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 52065
diff changeset
   266
MAN_SUBDIRS += share/man
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 52065
diff changeset
   267
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   268
# Find all module-info.java files for the current build target platform and
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   269
# configuration.
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   270
# Param 1 - Module to find for, set to * for finding all
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   271
FindAllModuleInfos = \
47455
4c294a196030 8189376: Unsorted $(wildcard) causes instable module-deps.gmk
ihse
parents: 47314
diff changeset
   272
    $(sort $(wildcard \
37030
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   273
        $(foreach sub, $(SRC_SUBDIRS), \
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   274
          $(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
   275
        $(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
   276
41658
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41653
diff changeset
   277
# 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
   278
# 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
   279
FindModuleInfosForSrcDir = \
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41653
diff changeset
   280
    $(wildcard \
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41653
diff changeset
   281
        $(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
   282
          $(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
   283
        ) \
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41653
diff changeset
   284
        $(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
   285
    )
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41653
diff changeset
   286
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   287
# Extract the module names from the paths of module-info.java files. The
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   288
# position of the module directory differs depending on if this is an imported
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   289
# src dir or not.
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   290
GetModuleNameFromModuleInfo = \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   291
    $(strip $(foreach mi, $1, \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   292
      $(if $(filter $(addsuffix %, $(IMPORT_MODULES_SRC)), $(mi)), \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   293
        $(notdir $(patsubst %/,%, $(dir $(mi)))), \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   294
        $(notdir $(patsubst %/,%, $(dir $(patsubst %/,%, $(dir $(patsubst %/,%, $(dir $(mi)))))))))))
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   295
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   296
# Find all modules by looking for module-info.java files and looking at parent
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   297
# directories.
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   298
FindAllModules = \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   299
    $(sort $(filter-out $(MODULES_FILTER), \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   300
    $(call GetModuleNameFromModuleInfo, $(MODULE_INFOS))))
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   301
41658
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41653
diff changeset
   302
# 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
   303
# 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
   304
FindModulesForSrcDir = \
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41653
diff changeset
   305
    $(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
   306
        $(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
   307
    ))
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41653
diff changeset
   308
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   309
FindImportedModules = \
37652
67e98335455c 8155629: MODULES_FILTER should apply to imported modules
erikj
parents: 37650
diff changeset
   310
    $(filter-out $(MODULES_FILTER), \
67e98335455c 8155629: MODULES_FILTER should apply to imported modules
erikj
parents: 37650
diff changeset
   311
    $(if $(IMPORT_MODULES_CLASSES), $(notdir $(wildcard $(IMPORT_MODULES_CLASSES)/*))))
26548
3b002da2aee1 8058118: Generate modules.list during the build
erikj
parents: 26116
diff changeset
   312
37030
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   313
# Find all source dirs for a particular module
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   314
# $1 - Module to find source dirs for
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   315
FindModuleSrcDirs = \
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   316
    $(strip $(wildcard \
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   317
        $(addsuffix /$(strip $1), $(GENERATED_SRC_DIRS) $(IMPORT_MODULES_SRC)) \
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   318
        $(foreach sub, $(SRC_SUBDIRS), $(addsuffix /$(strip $1)/$(sub), $(TOP_SRC_DIRS)))))
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   319
44733
6505f00be6f2 8178038: Copy jdwp-protocol.html to proper location
ihse
parents: 44730
diff changeset
   320
# Find all specs dirs for a particular module
6505f00be6f2 8178038: Copy jdwp-protocol.html to proper location
ihse
parents: 44730
diff changeset
   321
# $1 - Module to find specs dirs for
6505f00be6f2 8178038: Copy jdwp-protocol.html to proper location
ihse
parents: 44730
diff changeset
   322
FindModuleSpecsDirs = \
6505f00be6f2 8178038: Copy jdwp-protocol.html to proper location
ihse
parents: 44730
diff changeset
   323
    $(strip $(wildcard \
6505f00be6f2 8178038: Copy jdwp-protocol.html to proper location
ihse
parents: 44730
diff changeset
   324
        $(foreach sub, $(SPEC_SUBDIRS), $(addsuffix /$(strip $1)/$(sub), $(TOP_SRC_DIRS)))))
6505f00be6f2 8178038: Copy jdwp-protocol.html to proper location
ihse
parents: 44730
diff changeset
   325
52714
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 52065
diff changeset
   326
# Find all man dirs for a particular module
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 52065
diff changeset
   327
# $1 - Module to find man dirs for
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 52065
diff changeset
   328
FindModuleManDirs = \
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 52065
diff changeset
   329
    $(strip $(wildcard \
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 52065
diff changeset
   330
        $(foreach sub, $(MAN_SUBDIRS), $(addsuffix /$(strip $1)/$(sub), $(TOP_SRC_DIRS)))))
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 52065
diff changeset
   331
37030
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   332
# Construct the complete module source path
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   333
GetModuleSrcPath = \
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   334
    $(call PathList, \
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   335
        $(addsuffix /*, $(GENERATED_SRC_DIRS) $(IMPORT_MODULES_SRC)) \
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   336
        $(foreach sub, $(SRC_SUBDIRS), $(addsuffix /*/$(sub), $(TOP_SRC_DIRS))))
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36793
diff changeset
   337
26548
3b002da2aee1 8058118: Generate modules.list during the build
erikj
parents: 26116
diff changeset
   338
################################################################################
45233
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   339
# 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
   340
# dependencies ("requires"), and indirect exports ("requires transitive").
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   341
26548
3b002da2aee1 8058118: Generate modules.list during the build
erikj
parents: 26116
diff changeset
   342
MODULE_DEPS_MAKEFILE := $(MAKESUPPORT_OUTPUTDIR)/module-deps.gmk
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   343
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   344
MODULE_INFOS := $(call FindAllModuleInfos, *)
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   345
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   346
$(MODULE_DEPS_MAKEFILE): $(MODULE_INFOS) \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   347
    $(call DependOnVariable, MODULE_INFOS, $(MAKESUPPORT_OUTPUTDIR)/MODULE_INFOS.vardeps)
52065
dea8a62cdfc3 8211724: Change mkdir -p to MakeDir macro where possible
erikj
parents: 51030
diff changeset
   348
	$(call MakeTargetDir)
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   349
	$(RM) $@
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   350
	$(foreach m, $(MODULE_INFOS), \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   351
	    ( $(PRINTF) "DEPS_$(call GetModuleNameFromModuleInfo, $m) :=" && \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   352
	      $(NAWK) -v MODULE=$(call GetModuleNameFromModuleInfo, $m) '\
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   353
	          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
   354
	          /^ *requires/ { sub(/;/, ""); \
47853
3e345eba9255 8191420: Changing "requires" to "requires static" in an application module results in build failure
erikj
parents: 47735
diff changeset
   355
	                          sub(/requires /, " "); \
3e345eba9255 8191420: Changing "requires" to "requires static" in an application module results in build failure
erikj
parents: 47735
diff changeset
   356
	                          sub(/ static /, " "); \
3e345eba9255 8191420: Changing "requires" to "requires static" in an application module results in build failure
erikj
parents: 47735
diff changeset
   357
	                          sub(/ transitive /, " "); \
44726
04aa2c065f5c 8176785: Add build support to generate PNG file from .dot file
ihse
parents: 44725
diff changeset
   358
	                          sub(/\/\/.*/, ""); \
04aa2c065f5c 8176785: Add build support to generate PNG file from .dot file
ihse
parents: 44725
diff changeset
   359
	                          sub(/\/\*.*\*\//, ""); \
04aa2c065f5c 8176785: Add build support to generate PNG file from .dot file
ihse
parents: 44725
diff changeset
   360
	                          gsub(/^ +\*.*/, ""); \
04aa2c065f5c 8176785: Add build support to generate PNG file from .dot file
ihse
parents: 44725
diff changeset
   361
	                          gsub(/ /, ""); \
04aa2c065f5c 8176785: Add build support to generate PNG file from .dot file
ihse
parents: 44725
diff changeset
   362
	                          printf(" %s", $$0) } \
45233
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   363
	          END           { printf("\n") }' $m && \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   364
	      $(PRINTF) "TRANSITIVE_MODULES_$(call GetModuleNameFromModuleInfo, $m) :=" && \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   365
	      $(NAWK) -v MODULE=$(call GetModuleNameFromModuleInfo, $m) '\
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   366
	          BEGIN      { if (MODULE != "java.base") printf(" java.base"); } \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   367
	          /^ *requires  *transitive/ { \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   368
	                          sub(/;/, ""); \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   369
	                          sub(/requires/, ""); \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   370
	                          sub(/transitive/, ""); \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   371
	                          sub(/\/\/.*/, ""); \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   372
	                          sub(/\/\*.*\*\//, ""); \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   373
	                          gsub(/^ +\*.*/, ""); \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   374
	                          gsub(/ /, ""); \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   375
	                          printf(" %s", $$0) } \
44726
04aa2c065f5c 8176785: Add build support to generate PNG file from .dot file
ihse
parents: 44725
diff changeset
   376
	          END           { printf("\n") }' $m \
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   377
	    ) >> $@ $(NEWLINE))
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   378
26116
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff changeset
   379
-include $(MODULE_DEPS_MAKEFILE)
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff changeset
   380
45233
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   381
# Find dependencies ("requires") for a given module.
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   382
# Param 1: Module to find dependencies for.
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   383
FindDepsForModule = \
26116
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff changeset
   384
  $(DEPS_$(strip $1))
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   385
45233
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   386
# 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
   387
# Param 1: Module to find dependencies for.
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   388
FindTransitiveDepsForModule = \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   389
    $(sort $(call FindDepsForModule, $1) \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   390
        $(foreach m, $(call FindDepsForModule, $1), \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   391
            $(call FindDepsForModule, $m) \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   392
            $(foreach n, $(call FindDepsForModule, $m), \
17612cee3530 8142968: Module System implementation
alanb
parents: 35030
diff changeset
   393
                 $(call FindDepsForModule, $n))))
26116
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff changeset
   394
45233
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   395
# 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
   396
# 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
   397
FindTransitiveDepsForModules = \
04aa2c065f5c 8176785: Add build support to generate PNG file from .dot file
ihse
parents: 44725
diff changeset
   398
    $(sort $(foreach m, $1, $(call FindTransitiveDepsForModule, $m)))
04aa2c065f5c 8176785: Add build support to generate PNG file from .dot file
ihse
parents: 44725
diff changeset
   399
45233
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   400
# 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
   401
# 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
   402
FindIndirectExportsForModule = \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   403
  $(TRANSITIVE_MODULES_$(strip $1))
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   404
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   405
# 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
   406
# 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
   407
FindTransitiveIndirectDepsForModule = \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   408
    $(sort $(call FindIndirectExportsForModule, $1) \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   409
        $(foreach m, $(call FindIndirectExportsForModule, $1), \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   410
            $(call FindIndirectExportsForModule, $m) \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   411
            $(foreach n, $(call FindIndirectExportsForModule, $m), \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   412
                 $(call FindIndirectExportsForModule, $n))))
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   413
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   414
# 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
   415
# 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
   416
FindTransitiveIndirectDepsForModules = \
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   417
    $(sort $(foreach m, $1, $(call FindTransitiveIndirectDepsForModule, $m)))
538af025db97 8180480: Use "requires transitive" relationship when determining modules for javadoc
ihse
parents: 45232
diff changeset
   418
37975
551c5d86de79 8155786: Determine modules depending on upgradeable modules directly and indirectly
erikj
parents: 37973
diff changeset
   419
# 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
   420
# require an upradeable module.
551c5d86de79 8155786: Determine modules depending on upgradeable modules directly and indirectly
erikj
parents: 37973
diff changeset
   421
FindAllUpgradeableModules = \
48841
0937e5f799df 8190378: Removal of CORBA and Java EE modules
lancea
parents: 47853
diff changeset
   422
    $(sort $(filter-out $(MODULES_FILTER), $(UPGRADEABLE_MODULES)))
45612
3368f6d8b082 8182032: Make java.compiler upgradeable
mchung
parents: 45509
diff changeset
   423
37975
551c5d86de79 8155786: Determine modules depending on upgradeable modules directly and indirectly
erikj
parents: 37973
diff changeset
   424
26116
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff changeset
   425
################################################################################
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff changeset
   426
42505
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 42427
diff changeset
   427
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
   428
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
   429
  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
   430
endif
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 42427
diff changeset
   431
LEGAL_SUBDIRS += share/legal
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 42427
diff changeset
   432
49537
149dc554808c 8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents: 49126
diff changeset
   433
# Find all legal src dirs for a particular module
42505
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 42427
diff changeset
   434
# $1 - Module to find legal dirs for
49537
149dc554808c 8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents: 49126
diff changeset
   435
FindModuleLegalSrcDirs = \
42505
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 42427
diff changeset
   436
    $(strip $(wildcard \
49537
149dc554808c 8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents: 49126
diff changeset
   437
        $(addsuffix /$(strip $1), $(IMPORT_MODULES_LEGAL)) \
47735
45af799ceb6a 8190725: Freetype license file provided with configure not included in images
erikj
parents: 47701
diff changeset
   438
        $(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
   439
    ))
42505
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 42427
diff changeset
   440
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 42427
diff changeset
   441
################################################################################
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 42427
diff changeset
   442
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   443
# Param 1 - Name of module
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   444
define ReadSingleImportMetaData
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   445
    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
   446
      classloader :=
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   447
      include_in_jre :=
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   448
      include_in_jdk :=
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   449
      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
   450
      ifeq ($$(include_in_jre), true)
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   451
        JRE_MODULES += $1
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   452
      endif
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   453
      ifeq ($$(include_in_jdk), true)
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   454
        JDK_MODULES += $1
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   455
      endif
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   456
      ifeq ($$(classloader), boot)
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   457
        BOOT_MODULES += $1
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   458
      else ifeq ($$(classloader), ext)
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   459
        PLATFORM_MODULES += $1
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   460
      endif
45098
4f30865c93b0 8179105: Respect "include_in_docs" property from imported modules.
ihse
parents: 44830
diff changeset
   461
      ifneq ($$(include_in_docs), false)
4f30865c93b0 8179105: Respect "include_in_docs" property from imported modules.
ihse
parents: 44830
diff changeset
   462
        # defaults to true if unspecified
4f30865c93b0 8179105: Respect "include_in_docs" property from imported modules.
ihse
parents: 44830
diff changeset
   463
        DOCS_MODULES += $1
4f30865c93b0 8179105: Respect "include_in_docs" property from imported modules.
ihse
parents: 44830
diff changeset
   464
      endif
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   465
    else
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   466
      # Default to include in all
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   467
      JRE_MODULES += $1
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   468
      JDK_MODULES += $1
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   469
    endif
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   470
endef
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   471
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   472
# 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
   473
# 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
   474
# 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
   475
# * JRE_MODULES
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   476
# * JDK_MODULES
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   477
# * BOOT_MODULES
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   478
# * PLATFORM_MODULES
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   479
# * JRE_TOOL_MODULES
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   480
define ReadImportMetaData
36725
f458544b0d76 8153261: Clean up fix for JDK-8153217
erikj
parents: 36723
diff changeset
   481
    IMPORTED_MODULES := $$(call FindImportedModules)
f458544b0d76 8153261: Clean up fix for JDK-8153217
erikj
parents: 36723
diff changeset
   482
    $$(foreach m, $$(IMPORTED_MODULES), \
f458544b0d76 8153261: Clean up fix for JDK-8153217
erikj
parents: 36723
diff changeset
   483
      $$(eval $$(call ReadSingleImportMetaData, $$m)))
36543
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   484
endef
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   485
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   486
################################################################################
a8ce27ddc757 8152197: Single place to specify module-specific information for images build
mchung
parents: 36506
diff changeset
   487
26116
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
diff changeset
   488
endif # _MODULES_GMK