common/makefiles/javadoc/NON_CORE_PKGS.gmk

Tue, 18 Sep 2012 11:29:16 -0700

author
ohair
date
Tue, 18 Sep 2012 11:29:16 -0700
changeset 478
2ba6f4da4bf3
child 547
a0779b1e9a4d
permissions
-rw-r--r--

7197849: Update new build-infra makefiles
Reviewed-by: ihse, erikj, ohrstrom, tbell

ohair@478 1 #
ohair@478 2 # Copyright (c) 2002, 2012, 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 #
ohair@478 27 # This file contains the package names of all the "non-core"
ohair@478 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 #
ohair@478 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
ohair@478 36 DOMAPI_PKGS = com.sun.java.browser.dom \
ohair@478 37 org.w3c.dom \
ohair@478 38 org.w3c.dom.bootstrap \
ohair@478 39 org.w3c.dom.ls \
ohair@478 40 org.w3c.dom.ranges \
ohair@478 41 org.w3c.dom.traversal \
ohair@478 42 org.w3c.dom.html \
ohair@478 43 org.w3c.dom.stylesheets \
ohair@478 44 org.w3c.dom.css \
ohair@478 45 org.w3c.dom.events \
ohair@478 46 org.w3c.dom.views
ohair@478 47
ohair@478 48 JDI_PKGS = com.sun.jdi \
ohair@478 49 com.sun.jdi.event \
ohair@478 50 com.sun.jdi.request \
ohair@478 51 com.sun.jdi.connect \
ohair@478 52 com.sun.jdi.connect.spi
ohair@478 53
ohair@478 54 MGMT_PKGS = com.sun.management
ohair@478 55
ohair@478 56 JAAS_PKGS = com.sun.security.auth \
ohair@478 57 com.sun.security.auth.callback \
ohair@478 58 com.sun.security.auth.login \
ohair@478 59 com.sun.security.auth.module
ohair@478 60
ohair@478 61 JGSS_PKGS = com.sun.security.jgss
ohair@478 62
ohair@478 63 OLD_JSSE_PKGS = com.sun.net.ssl
ohair@478 64
ohair@478 65 HTTPSERVER_PKGS = com.sun.net.httpserver \
ohair@478 66 com.sun.net.httpserver.spi
ohair@478 67
ohair@478 68 NIO_PKGS = com.sun.nio.file
ohair@478 69
ohair@478 70 DOCLETAPI_PKGS = com.sun.javadoc
ohair@478 71
ohair@478 72 TAGLETAPI_FILE = com/sun/tools/doclets/Taglet.java
ohair@478 73
ohair@478 74 TAGLETAPI_PKGS = com.sun.tools.doclets
ohair@478 75
ohair@478 76 ATTACH_PKGS = com.sun.tools.attach \
ohair@478 77 com.sun.tools.attach.spi
ohair@478 78
ohair@478 79 JCONSOLE_PKGS = com.sun.tools.jconsole
ohair@478 80
ohair@478 81 TREEAPI_PKGS = com.sun.source.tree \
ohair@478 82 com.sun.source.util
ohair@478 83
ohair@478 84 SMARTCARDIO_PKGS = javax.smartcardio
ohair@478 85
ohair@478 86 SCTPAPI_PKGS = com.sun.nio.sctp
ohair@478 87
ohair@478 88 ifeq ($(PLATFORM), macosx)
ohair@478 89 APPLE_EXT_PKGS = com.apple.concurrent \
ohair@478 90 com.apple.eawt \
ohair@478 91 com.apple.eawt.event \
ohair@478 92 com.apple.eio
ohair@478 93 endif
ohair@478 94
ohair@478 95 # non-core packages in rt.jar
ohair@478 96 NON_CORE_PKGS = $(DOMAPI_PKGS) \
ohair@478 97 $(MGMT_PKGS) \
ohair@478 98 $(JAAS_PKGS) \
ohair@478 99 $(JGSS_PKGS) \
ohair@478 100 $(NIO_PKGS) \
ohair@478 101 $(OLD_JSSE_PKGS) \
ohair@478 102 $(HTTPSERVER_PKGS) \
ohair@478 103 $(SMARTCARDIO_PKGS) \
ohair@478 104 $(SCTPAPI_PKGS) \
ohair@478 105 $(APPLE_EXT_PKGS)
ohair@478 106

mercurial