author | chegar |
Tue, 22 Mar 2016 16:02:25 +0000 | |
changeset 36657 | 3b0dd9e3e474 |
parent 36284 | c59cc3dd4690 |
child 36792 | 09d2e1165981 |
permissions | -rw-r--r-- |
13697 | 1 |
# |
29851
81a61a04e2fe
8076182: Open Source Java Access Bridge - Create Patch for JEP C127 8055831
ptbrunet
parents:
27596
diff
changeset
|
2 |
# Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved. |
13697 | 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 |
# |
|
20363 | 27 |
# This file contains the package names of all the "non-core" |
28 |
# API published in the Java 2 SDK documentation. "Non-core" means |
|
13697 | 29 |
# it includes all published API outside of the JDK API specification. |
30 |
# |
|
20363 | 31 |
# These environment variables are used by javadoc in |
13697 | 32 |
# make/docs/Makefile and are referenced by the localization |
33 |
# team when determining which APIs to extract javadoc |
|
34 |
# comments from. |
|
35 |
||
25045
7b8a6a85baa4
8044063: Remove com.sun.java.browser.* from jdk repo
mchung
parents:
23836
diff
changeset
|
36 |
DOMAPI_PKGS = org.w3c.dom \ |
20363 | 37 |
org.w3c.dom.bootstrap \ |
38 |
org.w3c.dom.ls \ |
|
39 |
org.w3c.dom.ranges \ |
|
40 |
org.w3c.dom.traversal \ |
|
41 |
org.w3c.dom.html \ |
|
42 |
org.w3c.dom.stylesheets \ |
|
43 |
org.w3c.dom.css \ |
|
44 |
org.w3c.dom.events \ |
|
45 |
org.w3c.dom.views |
|
13697 | 46 |
|
20363 | 47 |
JDI_PKGS = com.sun.jdi \ |
48 |
com.sun.jdi.event \ |
|
49 |
com.sun.jdi.request \ |
|
50 |
com.sun.jdi.connect \ |
|
51 |
com.sun.jdi.connect.spi |
|
13697 | 52 |
|
20363 | 53 |
MGMT_PKGS = com.sun.management |
13697 | 54 |
|
20363 | 55 |
JAAS_PKGS = com.sun.security.auth \ |
56 |
com.sun.security.auth.callback \ |
|
57 |
com.sun.security.auth.login \ |
|
58 |
com.sun.security.auth.module |
|
13697 | 59 |
|
20363 | 60 |
JGSS_PKGS = com.sun.security.jgss |
13697 | 61 |
|
20363 | 62 |
OLD_JSSE_PKGS = com.sun.net.ssl |
13697 | 63 |
|
20363 | 64 |
HTTPSERVER_PKGS = com.sun.net.httpserver \ |
65 |
com.sun.net.httpserver.spi |
|
13697 | 66 |
|
20363 | 67 |
NIO_PKGS = com.sun.nio.file |
13697 | 68 |
|
35367
48968f91bab4
8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents:
34866
diff
changeset
|
69 |
OLD_DOCLETAPI_PKGS = com.sun.javadoc |
48968f91bab4
8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents:
34866
diff
changeset
|
70 |
|
48968f91bab4
8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents:
34866
diff
changeset
|
71 |
DOCLETAPI_PKGS = jdk.javadoc.doclet \ |
48968f91bab4
8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents:
34866
diff
changeset
|
72 |
jdk.javadoc.doclet.taglet |
13697 | 73 |
|
20363 | 74 |
TAGLETAPI_FILE = com/sun/tools/doclets/Taglet.java |
13697 | 75 |
|
20363 | 76 |
TAGLETAPI_PKGS = com.sun.tools.doclets |
13697 | 77 |
|
20363 | 78 |
ATTACH_PKGS = com.sun.tools.attach \ |
79 |
com.sun.tools.attach.spi |
|
13697 | 80 |
|
20363 | 81 |
JCONSOLE_PKGS = com.sun.tools.jconsole |
13697 | 82 |
|
20363 | 83 |
TREEAPI_PKGS = com.sun.source.doctree \ |
84 |
com.sun.source.tree \ |
|
34866 | 85 |
com.sun.source.util |
13697 | 86 |
|
30416
6216eb71e929
8079900: javadoc is missing for jdk.nashorn.api.tree package
sundar
parents:
29851
diff
changeset
|
87 |
NASHORNAPI_PKGS = jdk.nashorn.api.scripting \ |
6216eb71e929
8079900: javadoc is missing for jdk.nashorn.api.tree package
sundar
parents:
29851
diff
changeset
|
88 |
jdk.nashorn.api.tree |
35369
a68e46d94261
8148617: top level make docs target does not generate javadocs for dynalink API
sundar
parents:
35367
diff
changeset
|
89 |
|
a68e46d94261
8148617: top level make docs target does not generate javadocs for dynalink API
sundar
parents:
35367
diff
changeset
|
90 |
DYNALINKAPI_PKGS = jdk.dynalink \ |
a68e46d94261
8148617: top level make docs target does not generate javadocs for dynalink API
sundar
parents:
35367
diff
changeset
|
91 |
jdk.dynalink.beans \ |
a68e46d94261
8148617: top level make docs target does not generate javadocs for dynalink API
sundar
parents:
35367
diff
changeset
|
92 |
jdk.dynalink.linker \ |
a68e46d94261
8148617: top level make docs target does not generate javadocs for dynalink API
sundar
parents:
35367
diff
changeset
|
93 |
jdk.dynalink.linker.support \ |
a68e46d94261
8148617: top level make docs target does not generate javadocs for dynalink API
sundar
parents:
35367
diff
changeset
|
94 |
jdk.dynalink.support |
27596
da40665398a4
8066146: jdk.nashorn.api.scripting package javadoc should be included in jdk docs
sundar
parents:
27140
diff
changeset
|
95 |
|
13697 | 96 |
SMARTCARDIO_PKGS = javax.smartcardio |
97 |
||
20363 | 98 |
SCTPAPI_PKGS = com.sun.nio.sctp |
13697 | 99 |
|
100 |
ifeq ($(PLATFORM), macosx) |
|
36284
c59cc3dd4690
8148187: Remove OS X-specific com.apple.concurrent package
bchristi
parents:
35369
diff
changeset
|
101 |
APPLE_EXT_PKGS = com.apple.eawt \ |
20363 | 102 |
com.apple.eawt.event \ |
103 |
com.apple.eio |
|
13697 | 104 |
endif |
105 |
||
23836
a199f7dbfbc6
8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents:
21759
diff
changeset
|
106 |
JDK_PKGS = jdk \ |
27140
afcbbfccf839
8044473: Allow for extended set of platform MXBeans
bchristi
parents:
25045
diff
changeset
|
107 |
jdk.net \ |
afcbbfccf839
8044473: Allow for extended set of platform MXBeans
bchristi
parents:
25045
diff
changeset
|
108 |
jdk.management.cmm |
15899
015024b0e0e7
8008435: Fix new build to include jdk.Supported in ct.sym
darcy
parents:
14877
diff
changeset
|
109 |
|
29851
81a61a04e2fe
8076182: Open Source Java Access Bridge - Create Patch for JEP C127 8055831
ptbrunet
parents:
27596
diff
changeset
|
110 |
JACCESSAPI_PKGS = com.sun.java.accessibility.util |
81a61a04e2fe
8076182: Open Source Java Access Bridge - Create Patch for JEP C127 8055831
ptbrunet
parents:
27596
diff
changeset
|
111 |
|
13697 | 112 |
# non-core packages in rt.jar |
20363 | 113 |
NON_CORE_PKGS = $(DOMAPI_PKGS) \ |
114 |
$(MGMT_PKGS) \ |
|
115 |
$(JAAS_PKGS) \ |
|
116 |
$(JGSS_PKGS) \ |
|
117 |
$(NIO_PKGS) \ |
|
118 |
$(OLD_JSSE_PKGS) \ |
|
119 |
$(HTTPSERVER_PKGS) \ |
|
120 |
$(SMARTCARDIO_PKGS) \ |
|
121 |
$(SCTPAPI_PKGS) \ |
|
122 |
$(APPLE_EXT_PKGS) \ |
|
29851
81a61a04e2fe
8076182: Open Source Java Access Bridge - Create Patch for JEP C127 8055831
ptbrunet
parents:
27596
diff
changeset
|
123 |
$(JDK_PKGS) \ |
81a61a04e2fe
8076182: Open Source Java Access Bridge - Create Patch for JEP C127 8055831
ptbrunet
parents:
27596
diff
changeset
|
124 |
$(JACCESSAPI_PKGS) |