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