author | mchung |
Fri, 28 Dec 2012 22:21:40 -0800 | |
changeset 14994 | a544909d1d1c |
parent 14901 | cc7db364ce81 |
permissions | -rw-r--r-- |
2 | 1 |
# |
11826 | 2 |
# Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
|
5506 | 7 |
# published by the Free Software Foundation. Oracle designates this |
2 | 8 |
# particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
# by Oracle in the LICENSE file that accompanied this code. |
2 | 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 |
# |
|
5506 | 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. |
|
2 | 24 |
# |
25 |
||
26 |
# |
|
27 |
# This file contains the package names of all the "non-core" |
|
28 |
# API published in the Java 2 SDK documentation. "Non-core" means |
|
29 |
# it includes all published API outside of the JDK API specification. |
|
30 |
# |
|
31 |
# These environment variables are used by javadoc in |
|
32 |
# make/docs/Makefile and are referenced by the localization |
|
33 |
# team when determining which APIs to extract javadoc |
|
34 |
# comments from. |
|
35 |
||
36 |
DOMAPI_PKGS = com.sun.java.browser.dom \ |
|
37 |
org.w3c.dom \ |
|
38 |
org.w3c.dom.bootstrap \ |
|
39 |
org.w3c.dom.ls \ |
|
40 |
org.w3c.dom.ranges \ |
|
41 |
org.w3c.dom.traversal \ |
|
42 |
org.w3c.dom.html \ |
|
43 |
org.w3c.dom.stylesheets \ |
|
44 |
org.w3c.dom.css \ |
|
45 |
org.w3c.dom.events \ |
|
46 |
org.w3c.dom.views |
|
47 |
||
48 |
JDI_PKGS = com.sun.jdi \ |
|
49 |
com.sun.jdi.event \ |
|
50 |
com.sun.jdi.request \ |
|
51 |
com.sun.jdi.connect \ |
|
52 |
com.sun.jdi.connect.spi |
|
53 |
||
54 |
MGMT_PKGS = com.sun.management |
|
55 |
||
56 |
JAAS_PKGS = com.sun.security.auth \ |
|
57 |
com.sun.security.auth.callback \ |
|
58 |
com.sun.security.auth.login \ |
|
59 |
com.sun.security.auth.module |
|
60 |
||
61 |
JGSS_PKGS = com.sun.security.jgss |
|
62 |
||
63 |
OLD_JSSE_PKGS = com.sun.net.ssl |
|
64 |
||
65 |
HTTPSERVER_PKGS = com.sun.net.httpserver \ |
|
66 |
com.sun.net.httpserver.spi |
|
67 |
||
2057
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
715
diff
changeset
|
68 |
NIO_PKGS = com.sun.nio.file |
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
715
diff
changeset
|
69 |
|
2 | 70 |
DOCLETAPI_PKGS = com.sun.javadoc |
71 |
||
72 |
TAGLETAPI_FILE = com/sun/tools/doclets/Taglet.java |
|
73 |
||
74 |
ATTACH_PKGS = com.sun.tools.attach \ |
|
75 |
com.sun.tools.attach.spi |
|
76 |
||
77 |
JCONSOLE_PKGS = com.sun.tools.jconsole |
|
78 |
||
14994
a544909d1d1c
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
14901
diff
changeset
|
79 |
TREEAPI_PKGS = com.sun.source.doctree \ |
14901
cc7db364ce81
8005090: Include com.sun.source.doctree in Tree API docs
jjg
parents:
12047
diff
changeset
|
80 |
com.sun.source.tree \ |
2 | 81 |
com.sun.source.util |
82 |
||
83 |
SMARTCARDIO_PKGS = javax.smartcardio |
|
84 |
||
2542 | 85 |
SCTPAPI_PKGS = com.sun.nio.sctp |
86 |
||
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11826
diff
changeset
|
87 |
ifeq ($(PLATFORM), macosx) |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11826
diff
changeset
|
88 |
APPLE_EXT_PKGS = com.apple.concurrent \ |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11826
diff
changeset
|
89 |
com.apple.eawt \ |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11826
diff
changeset
|
90 |
com.apple.eawt.event \ |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11826
diff
changeset
|
91 |
com.apple.eio |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11826
diff
changeset
|
92 |
endif |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11826
diff
changeset
|
93 |
|
2 | 94 |
# non-core packages in rt.jar |
95 |
NON_CORE_PKGS = $(DOMAPI_PKGS) \ |
|
96 |
$(MGMT_PKGS) \ |
|
97 |
$(JAAS_PKGS) \ |
|
98 |
$(JGSS_PKGS) \ |
|
2057
3acf8e5e2ca0
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents:
715
diff
changeset
|
99 |
$(NIO_PKGS) \ |
2 | 100 |
$(OLD_JSSE_PKGS) \ |
101 |
$(HTTPSERVER_PKGS) \ |
|
406
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
102 |
$(SMARTCARDIO_PKGS) \ |
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11826
diff
changeset
|
103 |
$(SCTPAPI_PKGS) \ |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11826
diff
changeset
|
104 |
$(APPLE_EXT_PKGS) |
2542 | 105 |