author | mlarsson |
Mon, 04 Apr 2016 09:59:57 +0200 | |
changeset 37240 | ddd59c67dc03 |
parent 36506 | 17612cee3530 |
child 36787 | 402e5e40f6e5 |
permissions | -rw-r--r-- |
25854 | 1 |
# |
29313
36f48966bc7a
8072734: Turn on doclint checking in the build of modules in the jdk repo
darcy
parents:
29169
diff
changeset
|
2 |
# Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. |
25854 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
26 |
# This must be the first rule |
|
27 |
default: all |
|
28 |
||
29 |
include $(SPEC) |
|
30 |
include MakeBase.gmk |
|
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
26115
diff
changeset
|
31 |
include Modules.gmk |
25854 | 32 |
include JavaCompilation.gmk |
26115
7a9dc384f3c8
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25854
diff
changeset
|
33 |
include SetupJavaCompilers.gmk |
25854 | 34 |
|
35 |
# Hook to include the corresponding custom file, if present. |
|
36 |
$(eval $(call IncludeCustomExtension, , CompileJavaModules.gmk)) |
|
37 |
||
38 |
################################################################################ |
|
39 |
# Module specific build settings |
|
40 |
||
41 |
java.activation_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS |
|
42 |
||
43 |
################################################################################ |
|
44 |
||
35366 | 45 |
java.base_ADD_JAVAC_FLAGS := -Xdoclint:all/protected,-reference '-Xdoclint/package:java.*,javax.*' -XDstringConcat=inline |
27240
a2a7d337e3b7
8048124: Read hijra-config-umalqura.properties as a resource
rriggs
parents:
27137
diff
changeset
|
46 |
java.base_COPY := .icu .dat .spp content-types.properties hijrah-config-islamic-umalqura.properties |
25854 | 47 |
java.base_CLEAN := intrinsic.properties |
48 |
||
36506 | 49 |
java.base_EXCLUDE_FILES += \ |
50 |
$(JDK_TOPDIR)/src/java.base/share/classes/jdk/internal/module/ModuleLoaderMap.java |
|
51 |
||
25854 | 52 |
java.base_EXCLUDES += java/lang/doc-files |
53 |
||
54 |
# Exclude BreakIterator classes that are just used in compile process to generate |
|
55 |
# data files and shouldn't go in the product |
|
56 |
java.base_EXCLUDE_FILES += sun/text/resources/BreakIteratorRules.java |
|
57 |
||
58 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
30095
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29863
diff
changeset
|
59 |
java.base_EXCLUDE_FILES += sun/nio/fs/GnomeFileTypeDetector.java |
25854 | 60 |
endif |
61 |
||
34108
671dd84efa14
8142872: Remove support for sun.nio.ch.PollSelectorProvider from 9
robm
parents:
34102
diff
changeset
|
62 |
ifneq ($(filter solaris macosx linux windows,$(OPENJDK_TARGET_OS)), ) |
671dd84efa14
8142872: Remove support for sun.nio.ch.PollSelectorProvider from 9
robm
parents:
34102
diff
changeset
|
63 |
java.base_EXCLUDE_FILES += \ |
671dd84efa14
8142872: Remove support for sun.nio.ch.PollSelectorProvider from 9
robm
parents:
34102
diff
changeset
|
64 |
sun/nio/ch/AbstractPollSelectorImpl.java \ |
671dd84efa14
8142872: Remove support for sun.nio.ch.PollSelectorProvider from 9
robm
parents:
34102
diff
changeset
|
65 |
sun/nio/ch/PollSelectorImpl.java \ |
671dd84efa14
8142872: Remove support for sun.nio.ch.PollSelectorProvider from 9
robm
parents:
34102
diff
changeset
|
66 |
sun/nio/ch/PollSelectorProvider.java \ |
671dd84efa14
8142872: Remove support for sun.nio.ch.PollSelectorProvider from 9
robm
parents:
34102
diff
changeset
|
67 |
# |
671dd84efa14
8142872: Remove support for sun.nio.ch.PollSelectorProvider from 9
robm
parents:
34102
diff
changeset
|
68 |
endif |
671dd84efa14
8142872: Remove support for sun.nio.ch.PollSelectorProvider from 9
robm
parents:
34102
diff
changeset
|
69 |
|
25854 | 70 |
ifneq ($(OPENJDK_TARGET_OS), solaris) |
71 |
java.base_EXCLUDE_FILES += \ |
|
72 |
SolarisLoginModule.java \ |
|
73 |
SolarisSystem.java \ |
|
74 |
# |
|
75 |
endif |
|
76 |
||
77 |
ifeq ($(filter $(OPENJDK_TARGET_OS), solaris macosx aix), ) |
|
78 |
# |
|
79 |
# only solaris, macosx and aix |
|
80 |
# |
|
81 |
java.base_EXCLUDE_FILES += sun/nio/fs/PollingWatchService.java |
|
82 |
endif |
|
83 |
||
84 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
85 |
java.base_EXCLUDE_FILES += \ |
|
86 |
sun/nio/ch/SimpleAsynchronousFileChannelImpl.java \ |
|
87 |
# |
|
88 |
endif |
|
89 |
||
90 |
################################################################################ |
|
91 |
||
29437
807b7c4a4e62
8075035: Turn on doclint checking of modules in the langtools repo
darcy
parents:
29313
diff
changeset
|
92 |
java.compiler_ADD_JAVAC_FLAGS := -Xdoclint:all/protected,-reference '-Xdoclint/package:java.*,javax.*' |
807b7c4a4e62
8075035: Turn on doclint checking of modules in the langtools repo
darcy
parents:
29313
diff
changeset
|
93 |
|
807b7c4a4e62
8075035: Turn on doclint checking of modules in the langtools repo
darcy
parents:
29313
diff
changeset
|
94 |
################################################################################ |
807b7c4a4e62
8075035: Turn on doclint checking of modules in the langtools repo
darcy
parents:
29313
diff
changeset
|
95 |
|
29313
36f48966bc7a
8072734: Turn on doclint checking in the build of modules in the jdk repo
darcy
parents:
29169
diff
changeset
|
96 |
java.datatransfer_ADD_JAVAC_FLAGS := -Xdoclint:all/protected,-reference '-Xdoclint/package:java.*,javax.*' |
28903
2bf89d675e57
8056298: Separate java.awt.datatransfer from the desktop module
serb
parents:
27602
diff
changeset
|
97 |
java.datatransfer_COPY := flavormap.properties |
2bf89d675e57
8056298: Separate java.awt.datatransfer from the desktop module
serb
parents:
27602
diff
changeset
|
98 |
|
2bf89d675e57
8056298: Separate java.awt.datatransfer from the desktop module
serb
parents:
27602
diff
changeset
|
99 |
################################################################################ |
2bf89d675e57
8056298: Separate java.awt.datatransfer from the desktop module
serb
parents:
27602
diff
changeset
|
100 |
|
30426
3595be2840ac
8075771: Enable "missing" doclint check in build of the java.desktop module
darcy
parents:
30425
diff
changeset
|
101 |
java.desktop_ADD_JAVAC_FLAGS := -Xdoclint:all/protected,-reference '-Xdoclint/package:java.*,javax.*' |
28903
2bf89d675e57
8056298: Separate java.awt.datatransfer from the desktop module
serb
parents:
27602
diff
changeset
|
102 |
java.desktop_COPY := .gif .png .wav .txt .xml .css .pf |
29169
9a91cf20c223
8039269: images/cursors should not be in ${java.home}/lib
serb
parents:
28903
diff
changeset
|
103 |
java.desktop_CLEAN := iio-plugin.properties cursors.properties |
25854 | 104 |
|
105 |
java.desktop_EXCLUDES += \ |
|
106 |
java/awt/doc-files \ |
|
107 |
javax/swing/doc-files \ |
|
108 |
javax/swing/text/doc-files \ |
|
109 |
javax/swing/plaf/synth/doc-files \ |
|
110 |
javax/swing/undo/doc-files \ |
|
111 |
sun/awt/X11/doc-files \ |
|
112 |
# |
|
113 |
||
114 |
# The exception handling of swing beaninfo |
|
115 |
# These resources violates the convention of having code and resources together under |
|
116 |
# $(JDK_TOPDIR)/src/.../classes directories |
|
117 |
$(eval $(call SetupCopyFiles,COPY_BEANINFO, \ |
|
118 |
SRC := $(JDK_TOPDIR)/make/data/swingbeaninfo/images, \ |
|
119 |
DEST := $(JDK_OUTPUTDIR)/modules/java.desktop/javax/swing/beaninfo/images, \ |
|
120 |
FILES := $(wildcard $(JDK_TOPDIR)/make/data/swingbeaninfo/images/*.gif))) |
|
121 |
||
122 |
java.desktop_COPY_EXTRA += $(COPY_BEANINFO) |
|
123 |
||
124 |
java.desktop_EXCLUDE_FILES += \ |
|
125 |
javax/swing/plaf/nimbus/InternalFrameTitlePanePainter.java \ |
|
126 |
javax/swing/plaf/nimbus/OptionPaneMessageAreaPainter.java \ |
|
127 |
javax/swing/plaf/nimbus/ScrollBarPainter.java \ |
|
128 |
javax/swing/plaf/nimbus/SliderPainter.java \ |
|
129 |
javax/swing/plaf/nimbus/SpinnerPainter.java \ |
|
130 |
javax/swing/plaf/nimbus/SplitPanePainter.java \ |
|
131 |
javax/swing/plaf/nimbus/TabbedPanePainter.java \ |
|
132 |
sun/awt/resources/security-icon-bw16.png \ |
|
133 |
sun/awt/resources/security-icon-bw24.png \ |
|
134 |
sun/awt/resources/security-icon-bw32.png \ |
|
135 |
sun/awt/resources/security-icon-bw48.png \ |
|
136 |
sun/awt/resources/security-icon-interim16.png \ |
|
137 |
sun/awt/resources/security-icon-interim24.png \ |
|
138 |
sun/awt/resources/security-icon-interim32.png \ |
|
139 |
sun/awt/resources/security-icon-interim48.png \ |
|
140 |
sun/awt/resources/security-icon-yellow16.png \ |
|
141 |
sun/awt/resources/security-icon-yellow24.png \ |
|
142 |
sun/awt/resources/security-icon-yellow32.png \ |
|
143 |
sun/awt/resources/security-icon-yellow48.png \ |
|
144 |
sun/awt/X11/java-icon16.png \ |
|
145 |
sun/awt/X11/java-icon24.png \ |
|
146 |
sun/awt/X11/java-icon32.png \ |
|
147 |
sun/awt/X11/java-icon48.png \ |
|
148 |
.template \ |
|
149 |
# |
|
150 |
||
151 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
152 |
# exclude all X11 on Mac. |
|
29671
2f05f44dfe01
8075277: JDK is still building X11 related Java files on OSX
prr
parents:
29169
diff
changeset
|
153 |
java.desktop_EXCLUDES += \ |
2f05f44dfe01
8075277: JDK is still building X11 related Java files on OSX
prr
parents:
29169
diff
changeset
|
154 |
sun/awt/X11 \ |
2f05f44dfe01
8075277: JDK is still building X11 related Java files on OSX
prr
parents:
29169
diff
changeset
|
155 |
sun/java2d/x11 \ |
2f05f44dfe01
8075277: JDK is still building X11 related Java files on OSX
prr
parents:
29169
diff
changeset
|
156 |
sun/java2d/jules \ |
2f05f44dfe01
8075277: JDK is still building X11 related Java files on OSX
prr
parents:
29169
diff
changeset
|
157 |
sun/java2d/xr \ |
2f05f44dfe01
8075277: JDK is still building X11 related Java files on OSX
prr
parents:
29169
diff
changeset
|
158 |
com/sun/java/swing/plaf/gtk \ |
2f05f44dfe01
8075277: JDK is still building X11 related Java files on OSX
prr
parents:
29169
diff
changeset
|
159 |
# |
25854 | 160 |
java.desktop_EXCLUDE_FILES += \ |
29671
2f05f44dfe01
8075277: JDK is still building X11 related Java files on OSX
prr
parents:
29169
diff
changeset
|
161 |
$(wildcard $(JDK_TOPDIR)/src/java.desktop/unix/classes/sun/java2d/*.java) \ |
2f05f44dfe01
8075277: JDK is still building X11 related Java files on OSX
prr
parents:
29169
diff
changeset
|
162 |
$(wildcard $(JDK_TOPDIR)/src/java.desktop/unix/classes/sun/java2d/opengl/*.java) \ |
2f05f44dfe01
8075277: JDK is still building X11 related Java files on OSX
prr
parents:
29169
diff
changeset
|
163 |
$(wildcard $(JDK_TOPDIR)/src/java.desktop/unix/classes/sun/awt/*.java) \ |
2f05f44dfe01
8075277: JDK is still building X11 related Java files on OSX
prr
parents:
29169
diff
changeset
|
164 |
$(wildcard $(JDK_TOPDIR)/src/java.desktop/unix/classes/sun/font/*.java) \ |
25854 | 165 |
# |
166 |
else |
|
167 |
# TBD: figure out how to eliminate this long list |
|
168 |
java.desktop_EXCLUDE_FILES += \ |
|
169 |
sun/awt/X11/ScreenFormat.java \ |
|
170 |
sun/awt/X11/XArc.java \ |
|
171 |
sun/awt/X11/XChar2b.java \ |
|
172 |
sun/awt/X11/XCharStruct.java \ |
|
173 |
sun/awt/X11/XClassHint.java \ |
|
174 |
sun/awt/X11/XComposeStatus.java \ |
|
175 |
sun/awt/X11/XExtCodes.java \ |
|
176 |
sun/awt/X11/XFontProp.java \ |
|
177 |
sun/awt/X11/XFontSetExtents.java \ |
|
178 |
sun/awt/X11/XFontStruct.java \ |
|
179 |
sun/awt/X11/XGCValues.java \ |
|
180 |
sun/awt/X11/XHostAddress.java \ |
|
181 |
sun/awt/X11/XIMCallback.java \ |
|
182 |
sun/awt/X11/XIMHotKeyTrigger.java \ |
|
183 |
sun/awt/X11/XIMHotKeyTriggers.java \ |
|
184 |
sun/awt/X11/XIMPreeditCaretCallbackStruct.java \ |
|
185 |
sun/awt/X11/XIMPreeditDrawCallbackStruct.java \ |
|
186 |
sun/awt/X11/XIMPreeditStateNotifyCallbackStruct.java \ |
|
187 |
sun/awt/X11/XIMStatusDrawCallbackStruct.java \ |
|
188 |
sun/awt/X11/XIMStringConversionCallbackStruct.java \ |
|
189 |
sun/awt/X11/XIMStringConversionText.java \ |
|
190 |
sun/awt/X11/XIMStyles.java \ |
|
191 |
sun/awt/X11/XIMText.java \ |
|
192 |
sun/awt/X11/XIMValuesList.java \ |
|
193 |
sun/awt/X11/XImage.java \ |
|
194 |
sun/awt/X11/XKeyboardControl.java \ |
|
195 |
sun/awt/X11/XKeyboardState.java \ |
|
196 |
sun/awt/X11/XOMCharSetList.java \ |
|
197 |
sun/awt/X11/XOMFontInfo.java \ |
|
198 |
sun/awt/X11/XOMOrientation.java \ |
|
199 |
sun/awt/X11/XPoint.java \ |
|
200 |
sun/awt/X11/XRectangle.java \ |
|
201 |
sun/awt/X11/XSegment.java \ |
|
202 |
sun/awt/X11/XStandardColormap.java \ |
|
203 |
sun/awt/X11/XTextItem.java \ |
|
204 |
sun/awt/X11/XTextItem16.java \ |
|
205 |
sun/awt/X11/XTextProperty.java \ |
|
206 |
sun/awt/X11/XTimeCoord.java \ |
|
207 |
sun/awt/X11/XWindowChanges.java \ |
|
208 |
sun/awt/X11/XdbeSwapInfo.java \ |
|
209 |
sun/awt/X11/XmbTextItem.java \ |
|
210 |
sun/awt/X11/XwcTextItem.java |
|
211 |
endif |
|
212 |
||
213 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
214 |
java.desktop_EXCLUDES += com/sun/java/swing/plaf/gtk |
|
215 |
endif |
|
216 |
||
217 |
ifdef BUILD_HEADLESS_ONLY |
|
218 |
java.desktop_EXCLUDES += sun/applet |
|
219 |
endif |
|
220 |
||
221 |
# Why is this in the open source tree? |
|
222 |
ifdef OPENJDK |
|
223 |
java.desktop_EXCLUDES += sun/dc |
|
224 |
endif |
|
225 |
||
226 |
# Used on windows and macosx |
|
227 |
ifeq ($(filter $(OPENJDK_TARGET_OS), windows macosx), ) |
|
228 |
java.desktop_EXCLUDE_FILES += sun/awt/AWTCharset.java |
|
229 |
endif |
|
230 |
||
231 |
# These files do not appear in the build result of the old build. This |
|
232 |
# is because they are generated sources, but the AUTO_JAVA_FILES won't |
|
233 |
# pick them up since they aren't generated when the source dirs are |
|
234 |
# searched and they aren't referenced by any other classes so they won't |
|
235 |
# be picked up by implicit compilation. On a rebuild, they are picked up |
|
236 |
# and compiled. Exclude them here to produce the same rt.jar as the old |
|
237 |
# build does when building just once. |
|
238 |
java.desktop_EXCLUDE_FILES += \ |
|
239 |
javax/swing/plaf/nimbus/InternalFrameTitlePanePainter.java \ |
|
240 |
javax/swing/plaf/nimbus/OptionPaneMessageAreaPainter.java \ |
|
241 |
javax/swing/plaf/nimbus/ScrollBarPainter.java \ |
|
242 |
javax/swing/plaf/nimbus/SliderPainter.java \ |
|
243 |
javax/swing/plaf/nimbus/SpinnerPainter.java \ |
|
244 |
javax/swing/plaf/nimbus/SplitPanePainter.java \ |
|
245 |
javax/swing/plaf/nimbus/TabbedPanePainter.java \ |
|
246 |
# |
|
247 |
||
248 |
################################################################################ |
|
249 |
||
29313
36f48966bc7a
8072734: Turn on doclint checking in the build of modules in the jdk repo
darcy
parents:
29169
diff
changeset
|
250 |
java.scripting_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*' |
27560 | 251 |
java.scripting_COPY := .js |
252 |
java.scripting_CLEAN := .properties |
|
253 |
||
254 |
################################################################################ |
|
255 |
||
29863 | 256 |
java.instrument_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*' |
257 |
||
258 |
################################################################################ |
|
259 |
||
260 |
java.logging_ADD_JAVAC_FLAGS := -Xdoclint:all/protected,-reference '-Xdoclint/package:java.*,javax.*' |
|
261 |
||
262 |
################################################################################ |
|
263 |
||
264 |
java.management_ADD_JAVAC_FLAGS := -Xdoclint:all/protected,-reference '-Xdoclint/package:java.*,javax.*' |
|
265 |
||
266 |
################################################################################ |
|
267 |
||
268 |
java.prefs_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*' |
|
269 |
||
270 |
################################################################################ |
|
271 |
||
272 |
java.transaction_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*' |
|
273 |
||
274 |
################################################################################ |
|
275 |
||
29313
36f48966bc7a
8072734: Turn on doclint checking in the build of modules in the jdk repo
darcy
parents:
29169
diff
changeset
|
276 |
java.sql_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*' |
25854 | 277 |
java.sql_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS |
278 |
||
279 |
################################################################################ |
|
280 |
||
29313
36f48966bc7a
8072734: Turn on doclint checking in the build of modules in the jdk repo
darcy
parents:
29169
diff
changeset
|
281 |
java.sql.rowset_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*' |
25854 | 282 |
java.sql.rowset_CLEAN_FILES := $(wildcard \ |
283 |
$(JDK_TOPDIR)/src/java.sql.rowset/share/classes/com/sun/rowset/*.properties \ |
|
284 |
$(JDK_TOPDIR)/src/java.sql.rowset/share/classes/javax/sql/rowset/*.properties) |
|
285 |
||
286 |
################################################################################ |
|
287 |
||
29313
36f48966bc7a
8072734: Turn on doclint checking in the build of modules in the jdk repo
darcy
parents:
29169
diff
changeset
|
288 |
java.rmi_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*' |
25854 | 289 |
java.rmi_CLEAN_FILES := $(wildcard \ |
290 |
$(JDK_TOPDIR)/src/java.rmi/share/classes/sun/rmi/registry/resources/*.properties \ |
|
291 |
$(JDK_TOPDIR)/src/java.rmi/share/classes/sun/rmi/server/resources/*.properties) |
|
292 |
||
293 |
################################################################################ |
|
294 |
||
295 |
java.corba_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS |
|
296 |
||
297 |
java.corba_COPY := .prp |
|
298 |
java.corba_CLEAN := .properties |
|
299 |
||
27397
25afb1340d37
8064372: CompileJavaModules overwrites settings from custom
rriggs
parents:
27240
diff
changeset
|
300 |
java.corba_EXCLUDES += \ |
25854 | 301 |
com/sun/corba/se/PortableActivationIDL \ |
302 |
com/sun/tools/corba/se/logutil \ |
|
303 |
# |
|
27397
25afb1340d37
8064372: CompileJavaModules overwrites settings from custom
rriggs
parents:
27240
diff
changeset
|
304 |
java.corba_EXCLUDE_FILES += \ |
25854 | 305 |
com/sun/corba/se/impl/presentation/rmi/JNDIStateFactoryImpl.java \ |
306 |
com/sun/corba/se/spi/presentation/rmi/StubWrapper.java \ |
|
307 |
com/sun/org/omg/CORBA/IDLTypeOperations.java \ |
|
308 |
com/sun/org/omg/CORBA/IRObjectOperations.java \ |
|
309 |
org/omg/PortableInterceptor/UNKNOWN.java \ |
|
310 |
com/sun/tools/corba/se/idl/ResourceBundleUtil.java \ |
|
311 |
com/sun/corba/se/impl/presentation/rmi/jndi.properties \ |
|
312 |
# |
|
313 |
||
314 |
################################################################################ |
|
315 |
||
316 |
java.xml_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS |
|
317 |
java.xml_CLEAN := .properties |
|
318 |
||
319 |
################################################################################ |
|
320 |
||
321 |
java.xml.bind_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS |
|
322 |
java.xml.bind_CLEAN := .properties |
|
323 |
||
324 |
################################################################################ |
|
325 |
||
326 |
java.xml.soap_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS |
|
327 |
java.xml.soap_CLEAN := .properties |
|
328 |
||
329 |
################################################################################ |
|
330 |
||
331 |
java.xml.ws_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS |
|
332 |
java.xml.ws_COPY := .xml |
|
333 |
java.xml.ws_CLEAN := .properties |
|
334 |
||
335 |
################################################################################ |
|
336 |
||
29313
36f48966bc7a
8072734: Turn on doclint checking in the build of modules in the jdk repo
darcy
parents:
29169
diff
changeset
|
337 |
java.naming_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*' |
25854 | 338 |
java.naming_CLEAN := jndiprovider.properties |
339 |
||
340 |
################################################################################ |
|
341 |
||
29313
36f48966bc7a
8072734: Turn on doclint checking in the build of modules in the jdk repo
darcy
parents:
29169
diff
changeset
|
342 |
java.security.saaj_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*' |
25854 | 343 |
java.security.saaj_CLEAN := .properties |
344 |
||
345 |
################################################################################ |
|
346 |
||
29863 | 347 |
java.security.jgss_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*' |
348 |
||
349 |
################################################################################ |
|
350 |
||
351 |
java.smartcardio_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*' |
|
352 |
||
353 |
################################################################################ |
|
354 |
||
29313
36f48966bc7a
8072734: Turn on doclint checking in the build of modules in the jdk repo
darcy
parents:
29169
diff
changeset
|
355 |
java.xml.crypto_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*' |
25854 | 356 |
java.xml.crypto_COPY := .dtd .xml |
357 |
java.xml.crypto_CLEAN := .properties |
|
358 |
||
359 |
################################################################################ |
|
360 |
||
361 |
jdk.charsets_COPY := .dat |
|
362 |
||
363 |
################################################################################ |
|
364 |
||
36506 | 365 |
jdk.compiler_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:-com.sun.tools.*' \ |
366 |
-XDstringConcat=inline |
|
27560 | 367 |
jdk.compiler_CLEAN_FILES := $(wildcard \ |
368 |
$(patsubst %, $(JDK_TOPDIR)/src/jdk.compiler/share/classes/%/*.properties, \ |
|
369 |
sun/tools/serialver/resources)) |
|
25854 | 370 |
|
371 |
################################################################################ |
|
372 |
||
34116
b746e382da18
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33723
diff
changeset
|
373 |
jdk.hotspot.agent_ADD_JAVAC_FLAGS := $(DISABLE_WARNINGS),-overrides |
36290 | 374 |
jdk.hotspot.agent_COPY := .gif .png sa.js .properties |
34116
b746e382da18
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33723
diff
changeset
|
375 |
|
b746e382da18
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33723
diff
changeset
|
376 |
################################################################################ |
b746e382da18
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33723
diff
changeset
|
377 |
|
31512
756e4c77cd2d
8080679: Include jline in JDK for Java and JavaScript REPLs
jlahoda
parents:
31310
diff
changeset
|
378 |
jdk.internal.le_COPY := .properties |
756e4c77cd2d
8080679: Include jline in JDK for Java and JavaScript REPLs
jlahoda
parents:
31310
diff
changeset
|
379 |
|
756e4c77cd2d
8080679: Include jline in JDK for Java and JavaScript REPLs
jlahoda
parents:
31310
diff
changeset
|
380 |
################################################################################ |
756e4c77cd2d
8080679: Include jline in JDK for Java and JavaScript REPLs
jlahoda
parents:
31310
diff
changeset
|
381 |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27586
diff
changeset
|
382 |
jdk.jcmd_COPY := _options |
25854 | 383 |
|
384 |
################################################################################ |
|
385 |
||
34099
64da21aa58f6
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33723
diff
changeset
|
386 |
jdk.dynalink_CLEAN := .properties |
64da21aa58f6
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33723
diff
changeset
|
387 |
|
64da21aa58f6
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33723
diff
changeset
|
388 |
################################################################################ |
64da21aa58f6
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33723
diff
changeset
|
389 |
|
33723
b09ccef0313a
8142367: Allow files with .png extension to be copied for javadoc
bpatel
parents:
33045
diff
changeset
|
390 |
jdk.javadoc_COPY := .xml .css .js .png |
25854 | 391 |
|
392 |
################################################################################ |
|
393 |
||
394 |
jdk.rmic_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS |
|
395 |
jdk.rmic_CLEAN := .properties |
|
396 |
||
397 |
################################################################################ |
|
398 |
||
399 |
# No SCTP implementation on Mac OS X or AIX. These classes should be excluded. |
|
400 |
SCTP_IMPL_CLASSES = \ |
|
401 |
$(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/AssociationChange.java \ |
|
402 |
$(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/AssociationImpl.java \ |
|
403 |
$(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/PeerAddrChange.java \ |
|
404 |
$(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/ResultContainer.java \ |
|
405 |
$(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpChannelImpl.java \ |
|
406 |
$(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpMultiChannelImpl.java \ |
|
407 |
$(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpNet.java \ |
|
408 |
$(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpNotification.java \ |
|
409 |
$(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpServerChannelImpl.java \ |
|
410 |
$(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SendFailed.java \ |
|
411 |
$(JDK_TOPDIR)/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/Shutdown.java |
|
412 |
||
413 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
27397
25afb1340d37
8064372: CompileJavaModules overwrites settings from custom
rriggs
parents:
27240
diff
changeset
|
414 |
jdk.sctp_EXCLUDE_FILES += $(SCTP_IMPL_CLASSES) |
25854 | 415 |
endif |
416 |
||
417 |
ifeq ($(OPENJDK_TARGET_OS),aix) |
|
27397
25afb1340d37
8064372: CompileJavaModules overwrites settings from custom
rriggs
parents:
27240
diff
changeset
|
418 |
jdk.sctp_EXCLUDE_FILES += $(SCTP_IMPL_CLASSES) |
25854 | 419 |
endif |
420 |
||
421 |
################################################################################ |
|
422 |
||
423 |
jdk.jconsole_COPY := .gif .png |
|
424 |
||
425 |
jdk.jconsole_CLEAN_FILES := $(wildcard \ |
|
426 |
$(JDK_TOPDIR)/src/jdk.jconsole/share/classes/sun/tools/jconsole/resources/*.properties) |
|
427 |
||
428 |
################################################################################ |
|
429 |
||
30742 | 430 |
jdk.jdeps_CLEAN_FILES := $(wildcard \ |
431 |
$(JDK_TOPDIR)/src/jdk.jdeps/share/classes/com/sun/tools/jdeps/resources/*.properties \ |
|
432 |
$(JDK_TOPDIR)/src/jdk.jdeps/share/classes/com/sun/tools/javap/resources/*.properties) |
|
433 |
||
434 |
################################################################################ |
|
435 |
||
27397
25afb1340d37
8064372: CompileJavaModules overwrites settings from custom
rriggs
parents:
27240
diff
changeset
|
436 |
jdk.jdi_EXCLUDES += \ |
25854 | 437 |
com/sun/tools/example/debug/bdi \ |
438 |
com/sun/tools/example/debug/event \ |
|
439 |
com/sun/tools/example/debug/gui \ |
|
440 |
com/sun/jdi/doc-files \ |
|
441 |
# |
|
442 |
||
443 |
jdk.jdi_EXCLUDE_FILES += jdi-overview.html |
|
444 |
||
445 |
################################################################################ |
|
446 |
||
447 |
jdk.dev_CLEAN_FILES := $(wildcard \ |
|
448 |
$(patsubst %, $(JDK_TOPDIR)/src/jdk.dev/share/classes/%/*.properties, \ |
|
449 |
com/sun/tools/script/shell)) |
|
450 |
||
451 |
jdk.dev_COPY := .js oqlhelp.html .txt |
|
452 |
||
453 |
################################################################################ |
|
454 |
||
455 |
jdk.jvmstat_COPY := aliasmap |
|
456 |
||
457 |
################################################################################ |
|
458 |
||
459 |
jdk.xml.bind_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS |
|
460 |
jdk.xml.bind_CLEAN := .properties |
|
461 |
jdk.xml.bind_COPY := .xsd JAXBContextFactory.java ZeroOneBooleanAdapter.java |
|
462 |
||
463 |
################################################################################ |
|
464 |
||
465 |
jdk.xml.ws_SETUP := GENERATE_JDKBYTECODE_NOWARNINGS |
|
466 |
jdk.xml.ws_CLEAN := .properties |
|
467 |
||
468 |
################################################################################ |
|
469 |
||
470 |
sun.charsets_COPY := .dat |
|
471 |
||
472 |
################################################################################ |
|
473 |
||
474 |
jdk.localedata_COPY := _dict _th |
|
475 |
# Exclude BreakIterator classes that are just used in compile process to generate |
|
476 |
# data files and shouldn't go in the product |
|
27397
25afb1340d37
8064372: CompileJavaModules overwrites settings from custom
rriggs
parents:
27240
diff
changeset
|
477 |
jdk.localedata_EXCLUDE_FILES += sun/text/resources/th/BreakIteratorRules_th.java |
25854 | 478 |
|
479 |
################################################################################ |
|
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
480 |
# Setup the compilation for the module |
25854 | 481 |
# |
482 |
# Order src dirs in order of override with the most important first. Generated |
|
483 |
# source before static source and platform specific source before shared. |
|
484 |
# |
|
485 |
GENERATED_SRC_DIRS += \ |
|
36506 | 486 |
$(SUPPORT_OUTPUTDIR)/gensrc \ |
25854 | 487 |
# |
488 |
||
36506 | 489 |
TOP_SRC_DIRS += \ |
490 |
$(HOTSPOT_TOPDIR)/src \ |
|
491 |
$(CORBA_TOPDIR)/src \ |
|
492 |
$(JDK_TOPDIR)/src \ |
|
493 |
$(LANGTOOLS_TOPDIR)/src \ |
|
494 |
$(JAXP_TOPDIR)/src \ |
|
495 |
$(JAXWS_TOPDIR)/src \ |
|
496 |
$(NASHORN_TOPDIR)/src \ |
|
25854 | 497 |
# |
498 |
||
36506 | 499 |
SRC_SUBDIRS += $(OPENJDK_TARGET_OS)/classes |
500 |
ifneq ($(OPENJDK_TARGET_OS), $(OPENJDK_TARGET_OS_TYPE)) |
|
501 |
SRC_SUBDIRS += $(OPENJDK_TARGET_OS_TYPE)/classes |
|
502 |
endif |
|
503 |
SRC_SUBDIRS += share/classes |
|
504 |
||
505 |
MODULE_SRC_DIRS := $(strip \ |
|
506 |
$(addsuffix /$(MODULE), $(GENERATED_SRC_DIRS) $(IMPORT_MODULES_SRC)) \ |
|
507 |
$(foreach sub, $(SRC_SUBDIRS), $(addsuffix /$(MODULE)/$(sub), $(TOP_SRC_DIRS)))) |
|
25854 | 508 |
|
509 |
# The JDK_USER_DEFINED_FILTER is a poor man's incremental build: by specifying |
|
510 |
# JDK_FILTER at the make command line, only a subset of the JDK java files will |
|
511 |
# be recompiled. If multiple paths are separated by comma, convert that into a |
|
512 |
# space separated list. |
|
513 |
JDK_USER_DEFINED_FILTER := $(strip $(subst $(COMMA),$(SPACE), $(JDK_FILTER))) |
|
514 |
||
36506 | 515 |
# Rewrite the MODULE_SRC_DIRS with a wildcard for the module so that all module |
516 |
# source dirs are available on the path. |
|
517 |
MODULESOURCEPATH := $(subst $(SPACE),$(PATH_SEP),$(subst $(MODULE),*,$(MODULE_SRC_DIRS))) |
|
31014
a3b1e5a584bd
8054717: SJavac should track changes in the public apis of classpath classes!
alundblad
parents:
30742
diff
changeset
|
518 |
|
36506 | 519 |
# Add imported modules to the moduleclasspath |
520 |
MODULECLASSPATH := $(subst $(SPACE),$(PATH_SEP), $(IMPORT_MODULES_CLASSES)) |
|
25854 | 521 |
|
36506 | 522 |
ifeq ($(MODULE), jdk.vm.ci) |
523 |
## WORKAROUND jdk.vm.ci source structure issue |
|
524 |
JVMCI_MODULESOURCEPATH := $(MODULESOURCEPATH) \ |
|
525 |
$(subst /$(MODULE)/,/*/, $(filter-out %processor/src, \ |
|
526 |
$(wildcard $(HOTSPOT_TOPDIR)/src/jdk.vm.ci/share/classes/*/src))) |
|
527 |
MODULESOURCEPATH := $(subst $(SPACE),$(PATH_SEP), $(JVMCI_MODULESOURCEPATH)) |
|
528 |
endif |
|
529 |
||
530 |
# Make sure the generated source base dirs exist. Not all modules have generated |
|
531 |
# source in all of these directories and because of timing, all of them might not |
|
532 |
# exist at the time this makefile gets called. Javac will complain if there are |
|
533 |
# missing directories in the moduleclasspath. |
|
534 |
$(call MakeDir, $(GENERATED_SRC_DIRS)) |
|
25854 | 535 |
|
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
536 |
$(eval $(call SetupJavaCompilation, $(MODULE), \ |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
537 |
SETUP := $(if $($(MODULE)_SETUP), $($(MODULE)_SETUP), GENERATE_JDKBYTECODE), \ |
36506 | 538 |
MODULE := $(MODULE), \ |
539 |
SRC := $(wildcard $(MODULE_SRC_DIRS)), \ |
|
540 |
INCLUDES := $(JDK_USER_DEFINED_FILTER),\ |
|
541 |
BIN := $(if $($(MODULE)_BIN), $($(MODULE)_BIN), $(JDK_OUTPUTDIR)/modules), \ |
|
542 |
HEADERS := $(SUPPORT_OUTPUTDIR)/headers, \ |
|
543 |
ADD_JAVAC_FLAGS := \ |
|
544 |
$($(MODULE)_ADD_JAVAC_FLAGS) \ |
|
545 |
-modulesourcepath "$(MODULESOURCEPATH)" \ |
|
546 |
$(if $(MODULECLASSPATH), -modulepath "$(MODULECLASSPATH)") \ |
|
547 |
-system none, \ |
|
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
548 |
)) |
36506 | 549 |
|
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
550 |
TARGETS += $($(MODULE)) $($(MODULE)_COPY_EXTRA) |
25854 | 551 |
|
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
552 |
# Declare dependencies between java compilations of different modules. |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
553 |
# Since the other modules are declared in different invocations of this file, |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
554 |
# use the macro to find the correct target file to depend on. |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
555 |
# Only the javac compilation actually depends on other modules so limit |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
556 |
# dependency declaration to that by using the *_COMPILE_TARGET variable. |
36506 | 557 |
$($(MODULE)_COMPILE_TARGET): $(foreach d, $(call FindDepsForModule, $(MODULE)), \ |
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
558 |
$(call SetupJavaCompilationCompileTarget, $d, \ |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
559 |
$(if $($d_BIN), $($d_BIN), $(JDK_OUTPUTDIR)/modules/$d))) |
25854 | 560 |
|
561 |
################################################################################ |
|
562 |
# Copy zh_HK properties files from zh_TW |
|
563 |
||
564 |
$(JDK_OUTPUTDIR)/modules/%_zh_HK.properties: $(JDK_OUTPUTDIR)/modules/%_zh_TW.properties |
|
565 |
$(install-file) |
|
566 |
||
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
567 |
CreateHkTargets = \ |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
568 |
$(patsubst $(JDK_TOPDIR)/src/%, $(JDK_OUTPUTDIR)/modules/%, \ |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
569 |
$(subst /share/classes,, \ |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
570 |
$(subst _zh_TW,_zh_HK, $(filter %_zh_TW.properties, $1)))) |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
571 |
|
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
572 |
ifeq ($(MODULE), java.sql.rowset) |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
573 |
TARGETS += $(call CreateHkTargets, $(java.sql.rowset_CLEAN_FILES)) |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
574 |
endif |
25854 | 575 |
|
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
576 |
ifeq ($(MODULE), java.rmi) |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
577 |
TARGETS += $(call CreateHkTargets, $(java.rmi_CLEAN_FILES)) |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
578 |
endif |
25854 | 579 |
|
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
580 |
################################################################################ |
36506 | 581 |
# If this is an imported module, copy the pre built classes and resources into |
582 |
# the modules output dir |
|
583 |
||
584 |
ifneq ($(wildcard $(IMPORT_MODULES_CLASSES)/$(MODULE)), ) |
|
585 |
$(JDK_OUTPUTDIR)/modules/$(MODULE)/_imported.marker: \ |
|
586 |
$(call CacheFind, $(IMPORT_MODULES_CLASSES)/$(MODULE)) |
|
587 |
$(RM) -r $(@D) |
|
588 |
$(MKDIR) -p $(@D) |
|
589 |
$(CP) -R $(IMPORT_MODULES_CLASSES)/$(MODULE)/* $(@D)/ |
|
590 |
$(TOUCH) $@ |
|
591 |
||
592 |
TARGETS += $(JDK_OUTPUTDIR)/modules/$(MODULE)/_imported.marker |
|
593 |
||
594 |
# Add this dependency to avoid a race between compiling module-info.java and |
|
595 |
# importing the classes. |
|
596 |
$($(MODULE)_COMPILE_TARGET): $(JDK_OUTPUTDIR)/modules/$(MODULE)/_imported.marker |
|
597 |
endif |
|
598 |
||
599 |
################################################################################ |
|
600 |
||
601 |
$(eval $(call IncludeCustomExtension, , CompileJavaModules-post.gmk)) |
|
602 |
||
603 |
################################################################################ |
|
25854 | 604 |
|
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
605 |
all: $(TARGETS) |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
606 |
|
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34099
diff
changeset
|
607 |
.PHONY: all |