ohair@478: # ptbrunet@1334: # Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved. ohair@478: # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. ohair@478: # ohair@478: # This code is free software; you can redistribute it and/or modify it ohair@478: # under the terms of the GNU General Public License version 2 only, as ohair@478: # published by the Free Software Foundation. Oracle designates this ohair@478: # particular file as subject to the "Classpath" exception as provided ohair@478: # by Oracle in the LICENSE file that accompanied this code. ohair@478: # ohair@478: # This code is distributed in the hope that it will be useful, but WITHOUT ohair@478: # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or ohair@478: # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ohair@478: # version 2 for more details (a copy is included in the LICENSE file that ohair@478: # accompanied this code). ohair@478: # ohair@478: # You should have received a copy of the GNU General Public License version ohair@478: # 2 along with this work; if not, write to the Free Software Foundation, ohair@478: # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. ohair@478: # ohair@478: # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA ohair@478: # or visit www.oracle.com if you need additional information or have any ohair@478: # questions. ohair@478: # ohair@478: ohair@478: # ihse@839: # This file contains the package names of all the "non-core" ihse@839: # API published in the Java 2 SDK documentation. "Non-core" means ohair@478: # it includes all published API outside of the JDK API specification. ohair@478: # ihse@839: # These environment variables are used by javadoc in ohair@478: # make/docs/Makefile and are referenced by the localization ohair@478: # team when determining which APIs to extract javadoc ohair@478: # comments from. ohair@478: ihse@839: DOMAPI_PKGS = com.sun.java.browser.dom \ ihse@839: org.w3c.dom \ ihse@839: org.w3c.dom.bootstrap \ ihse@839: org.w3c.dom.ls \ ihse@839: org.w3c.dom.ranges \ ihse@839: org.w3c.dom.traversal \ ihse@839: org.w3c.dom.html \ ihse@839: org.w3c.dom.stylesheets \ ihse@839: org.w3c.dom.css \ ihse@839: org.w3c.dom.events \ ihse@839: org.w3c.dom.views ohair@478: ihse@839: JDI_PKGS = com.sun.jdi \ ihse@839: com.sun.jdi.event \ ihse@839: com.sun.jdi.request \ ihse@839: com.sun.jdi.connect \ ihse@839: com.sun.jdi.connect.spi ohair@478: ihse@839: MGMT_PKGS = com.sun.management ohair@478: ihse@839: JAAS_PKGS = com.sun.security.auth \ ihse@839: com.sun.security.auth.callback \ ihse@839: com.sun.security.auth.login \ ihse@839: com.sun.security.auth.module ohair@478: ihse@839: JGSS_PKGS = com.sun.security.jgss ohair@478: ihse@839: OLD_JSSE_PKGS = com.sun.net.ssl ohair@478: ihse@839: HTTPSERVER_PKGS = com.sun.net.httpserver \ ihse@839: com.sun.net.httpserver.spi ohair@478: ihse@839: NIO_PKGS = com.sun.nio.file ohair@478: ihse@839: DOCLETAPI_PKGS = com.sun.javadoc ohair@478: ihse@839: TAGLETAPI_FILE = com/sun/tools/doclets/Taglet.java ohair@478: ihse@839: TAGLETAPI_PKGS = com.sun.tools.doclets ohair@478: ihse@839: ATTACH_PKGS = com.sun.tools.attach \ ihse@839: com.sun.tools.attach.spi ohair@478: ihse@839: JCONSOLE_PKGS = com.sun.tools.jconsole ohair@478: ihse@839: TREEAPI_PKGS = com.sun.source.doctree \ ihse@839: com.sun.source.tree \ ihse@839: com.sun.source.util \ ihse@839: jdk ohair@478: sundar@1207: NASHORNAPI_PKGS = jdk.nashorn.api.scripting sundar@1207: ohair@478: SMARTCARDIO_PKGS = javax.smartcardio ohair@478: ihse@839: SCTPAPI_PKGS = com.sun.nio.sctp ohair@478: ohair@478: ifeq ($(PLATFORM), macosx) ihse@839: APPLE_EXT_PKGS = com.apple.concurrent \ ihse@839: com.apple.eawt \ ihse@839: com.apple.eawt.event \ ihse@839: com.apple.eio ohair@478: endif ohair@478: michaelm@1033: JDK_PKGS = jdk \ bchristi@1136: jdk.net \ bchristi@1136: jdk.management.cmm darcy@641: ptbrunet@1334: JACCESSAPI_PKGS = com.sun.java.accessibility.util ptbrunet@1334: ohair@478: # non-core packages in rt.jar ihse@839: NON_CORE_PKGS = $(DOMAPI_PKGS) \ ihse@839: $(MGMT_PKGS) \ ihse@839: $(JAAS_PKGS) \ ihse@839: $(JGSS_PKGS) \ ihse@839: $(NIO_PKGS) \ ihse@839: $(OLD_JSSE_PKGS) \ ihse@839: $(HTTPSERVER_PKGS) \ ihse@839: $(SMARTCARDIO_PKGS) \ ihse@839: $(SCTPAPI_PKGS) \ ihse@839: $(APPLE_EXT_PKGS) \ ptbrunet@1334: $(JDK_PKGS) \ ptbrunet@1334: $(JACCESSAPI_PKGS)