author | jjg |
Thu, 09 Oct 2014 19:14:30 -0700 | |
changeset 27118 | 3c8314271af7 |
parent 25045 | 7b8a6a85baa4 |
child 27140 | afcbbfccf839 |
permissions | -rw-r--r-- |
13697 | 1 |
# |
2 |
# Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved. |
|
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 |
|
20363 | 69 |
DOCLETAPI_PKGS = com.sun.javadoc |
13697 | 70 |
|
20363 | 71 |
TAGLETAPI_FILE = com/sun/tools/doclets/Taglet.java |
13697 | 72 |
|
20363 | 73 |
TAGLETAPI_PKGS = com.sun.tools.doclets |
13697 | 74 |
|
20363 | 75 |
ATTACH_PKGS = com.sun.tools.attach \ |
76 |
com.sun.tools.attach.spi |
|
13697 | 77 |
|
20363 | 78 |
JCONSOLE_PKGS = com.sun.tools.jconsole |
13697 | 79 |
|
20363 | 80 |
TREEAPI_PKGS = com.sun.source.doctree \ |
81 |
com.sun.source.tree \ |
|
82 |
com.sun.source.util \ |
|
83 |
jdk |
|
13697 | 84 |
|
85 |
SMARTCARDIO_PKGS = javax.smartcardio |
|
86 |
||
20363 | 87 |
SCTPAPI_PKGS = com.sun.nio.sctp |
13697 | 88 |
|
89 |
ifeq ($(PLATFORM), macosx) |
|
20363 | 90 |
APPLE_EXT_PKGS = com.apple.concurrent \ |
91 |
com.apple.eawt \ |
|
92 |
com.apple.eawt.event \ |
|
93 |
com.apple.eio |
|
13697 | 94 |
endif |
95 |
||
23836
a199f7dbfbc6
8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents:
21759
diff
changeset
|
96 |
JDK_PKGS = jdk \ |
a199f7dbfbc6
8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents:
21759
diff
changeset
|
97 |
jdk.net |
15899
015024b0e0e7
8008435: Fix new build to include jdk.Supported in ct.sym
darcy
parents:
14877
diff
changeset
|
98 |
|
13697 | 99 |
# non-core packages in rt.jar |
20363 | 100 |
NON_CORE_PKGS = $(DOMAPI_PKGS) \ |
101 |
$(MGMT_PKGS) \ |
|
102 |
$(JAAS_PKGS) \ |
|
103 |
$(JGSS_PKGS) \ |
|
104 |
$(NIO_PKGS) \ |
|
105 |
$(OLD_JSSE_PKGS) \ |
|
106 |
$(HTTPSERVER_PKGS) \ |
|
107 |
$(SMARTCARDIO_PKGS) \ |
|
108 |
$(SCTPAPI_PKGS) \ |
|
109 |
$(APPLE_EXT_PKGS) \ |
|
110 |
$(JDK_PKGS) |