make/common/NON_CORE_PKGS.gmk

Mon, 14 Sep 2020 16:42:03 +0100

author
andrew
date
Mon, 14 Sep 2020 16:42:03 +0100
changeset 2554
7f60c2d9823e
parent 1334
91d30b1c1e89
child 1482
8fb429038513
permissions
-rw-r--r--

Added tag jdk8u272-b08 for changeset 34c6baf21464

ohair@478 1 #
ptbrunet@1334 2 # Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
ohair@478 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohair@478 4 #
ohair@478 5 # This code is free software; you can redistribute it and/or modify it
ohair@478 6 # under the terms of the GNU General Public License version 2 only, as
ohair@478 7 # published by the Free Software Foundation. Oracle designates this
ohair@478 8 # particular file as subject to the "Classpath" exception as provided
ohair@478 9 # by Oracle in the LICENSE file that accompanied this code.
ohair@478 10 #
ohair@478 11 # This code is distributed in the hope that it will be useful, but WITHOUT
ohair@478 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohair@478 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohair@478 14 # version 2 for more details (a copy is included in the LICENSE file that
ohair@478 15 # accompanied this code).
ohair@478 16 #
ohair@478 17 # You should have received a copy of the GNU General Public License version
ohair@478 18 # 2 along with this work; if not, write to the Free Software Foundation,
ohair@478 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohair@478 20 #
ohair@478 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@478 22 # or visit www.oracle.com if you need additional information or have any
ohair@478 23 # questions.
ohair@478 24 #
ohair@478 25
ohair@478 26 #
ihse@839 27 # This file contains the package names of all the "non-core"
ihse@839 28 # API published in the Java 2 SDK documentation. "Non-core" means
ohair@478 29 # it includes all published API outside of the JDK API specification.
ohair@478 30 #
ihse@839 31 # These environment variables are used by javadoc in
ohair@478 32 # make/docs/Makefile and are referenced by the localization
ohair@478 33 # team when determining which APIs to extract javadoc
ohair@478 34 # comments from.
ohair@478 35
ihse@839 36 DOMAPI_PKGS = com.sun.java.browser.dom \
ihse@839 37 org.w3c.dom \
ihse@839 38 org.w3c.dom.bootstrap \
ihse@839 39 org.w3c.dom.ls \
ihse@839 40 org.w3c.dom.ranges \
ihse@839 41 org.w3c.dom.traversal \
ihse@839 42 org.w3c.dom.html \
ihse@839 43 org.w3c.dom.stylesheets \
ihse@839 44 org.w3c.dom.css \
ihse@839 45 org.w3c.dom.events \
ihse@839 46 org.w3c.dom.views
ohair@478 47
ihse@839 48 JDI_PKGS = com.sun.jdi \
ihse@839 49 com.sun.jdi.event \
ihse@839 50 com.sun.jdi.request \
ihse@839 51 com.sun.jdi.connect \
ihse@839 52 com.sun.jdi.connect.spi
ohair@478 53
ihse@839 54 MGMT_PKGS = com.sun.management
ohair@478 55
ihse@839 56 JAAS_PKGS = com.sun.security.auth \
ihse@839 57 com.sun.security.auth.callback \
ihse@839 58 com.sun.security.auth.login \
ihse@839 59 com.sun.security.auth.module
ohair@478 60
ihse@839 61 JGSS_PKGS = com.sun.security.jgss
ohair@478 62
ihse@839 63 OLD_JSSE_PKGS = com.sun.net.ssl
ohair@478 64
ihse@839 65 HTTPSERVER_PKGS = com.sun.net.httpserver \
ihse@839 66 com.sun.net.httpserver.spi
ohair@478 67
ihse@839 68 NIO_PKGS = com.sun.nio.file
ohair@478 69
ihse@839 70 DOCLETAPI_PKGS = com.sun.javadoc
ohair@478 71
ihse@839 72 TAGLETAPI_FILE = com/sun/tools/doclets/Taglet.java
ohair@478 73
ihse@839 74 TAGLETAPI_PKGS = com.sun.tools.doclets
ohair@478 75
ihse@839 76 ATTACH_PKGS = com.sun.tools.attach \
ihse@839 77 com.sun.tools.attach.spi
ohair@478 78
ihse@839 79 JCONSOLE_PKGS = com.sun.tools.jconsole
ohair@478 80
ihse@839 81 TREEAPI_PKGS = com.sun.source.doctree \
ihse@839 82 com.sun.source.tree \
ihse@839 83 com.sun.source.util \
ihse@839 84 jdk
ohair@478 85
sundar@1207 86 NASHORNAPI_PKGS = jdk.nashorn.api.scripting
sundar@1207 87
ohair@478 88 SMARTCARDIO_PKGS = javax.smartcardio
ohair@478 89
ihse@839 90 SCTPAPI_PKGS = com.sun.nio.sctp
ohair@478 91
ohair@478 92 ifeq ($(PLATFORM), macosx)
ihse@839 93 APPLE_EXT_PKGS = com.apple.concurrent \
ihse@839 94 com.apple.eawt \
ihse@839 95 com.apple.eawt.event \
ihse@839 96 com.apple.eio
ohair@478 97 endif
ohair@478 98
michaelm@1033 99 JDK_PKGS = jdk \
bchristi@1136 100 jdk.net \
bchristi@1136 101 jdk.management.cmm
darcy@641 102
ptbrunet@1334 103 JACCESSAPI_PKGS = com.sun.java.accessibility.util
ptbrunet@1334 104
ohair@478 105 # non-core packages in rt.jar
ihse@839 106 NON_CORE_PKGS = $(DOMAPI_PKGS) \
ihse@839 107 $(MGMT_PKGS) \
ihse@839 108 $(JAAS_PKGS) \
ihse@839 109 $(JGSS_PKGS) \
ihse@839 110 $(NIO_PKGS) \
ihse@839 111 $(OLD_JSSE_PKGS) \
ihse@839 112 $(HTTPSERVER_PKGS) \
ihse@839 113 $(SMARTCARDIO_PKGS) \
ihse@839 114 $(SCTPAPI_PKGS) \
ihse@839 115 $(APPLE_EXT_PKGS) \
ptbrunet@1334 116 $(JDK_PKGS) \
ptbrunet@1334 117 $(JACCESSAPI_PKGS)

mercurial