make/docs/NON_CORE_PKGS.gmk

Print this page
rev 7398 : 8032808: Support Solaris SO_FLOW_SLA socket option
Reviewed-by: michaelm


  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 
  68 NIO_PKGS         = com.sun.nio.file
  69 
  70 DOCLETAPI_PKGS   = com.sun.javadoc
  71 
  72 TAGLETAPI_FILE   = com/sun/tools/doclets/Taglet.java
  73 
  74 MIRROR_PKGS      = com.sun.mirror.apt           \
  75                    com.sun.mirror.declaration   \
  76                    com.sun.mirror.type          \
  77                    com.sun.mirror.util
  78 
  79 ATTACH_PKGS      = com.sun.tools.attach         \
  80                    com.sun.tools.attach.spi
  81 
  82 JCONSOLE_PKGS    = com.sun.tools.jconsole
  83 
  84 TREEAPI_PKGS     = com.sun.source.tree \
  85                    com.sun.source.util
  86 
  87 SMARTCARDIO_PKGS = javax.smartcardio
  88 
  89 SCTPAPI_PKGS     = com.sun.nio.sctp
  90 
  91 ifeq ($(PLATFORM), macosx)
  92 APPLE_EXT_PKGS   = com.apple.concurrent   \
  93                    com.apple.eawt         \
  94                    com.apple.eawt.event   \
  95                    com.apple.eio
  96 endif
  97 
  98 # non-core packages in rt.jar
  99 NON_CORE_PKGS    = $(DOMAPI_PKGS) \
 100                    $(MGMT_PKGS) \
 101                    $(JAAS_PKGS) \

 102                    $(JGSS_PKGS) \
 103                    $(NIO_PKGS) \
 104                    $(OLD_JSSE_PKGS) \
 105                    $(HTTPSERVER_PKGS) \
 106                    $(SMARTCARDIO_PKGS) \
 107                    $(SCTPAPI_PKGS) \
 108                    $(APPLE_EXT_PKGS)
 109 


  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 JDKNET_PKGS      = jdk.net
  66 
  67 HTTPSERVER_PKGS  = com.sun.net.httpserver       \
  68                    com.sun.net.httpserver.spi 
  69 
  70 NIO_PKGS         = com.sun.nio.file
  71 
  72 DOCLETAPI_PKGS   = com.sun.javadoc
  73 
  74 TAGLETAPI_FILE   = com/sun/tools/doclets/Taglet.java
  75 
  76 MIRROR_PKGS      = com.sun.mirror.apt           \
  77                    com.sun.mirror.declaration   \
  78                    com.sun.mirror.type          \
  79                    com.sun.mirror.util
  80 
  81 ATTACH_PKGS      = com.sun.tools.attach         \
  82                    com.sun.tools.attach.spi
  83 
  84 JCONSOLE_PKGS    = com.sun.tools.jconsole
  85 
  86 TREEAPI_PKGS     = com.sun.source.tree \
  87                    com.sun.source.util
  88 
  89 SMARTCARDIO_PKGS = javax.smartcardio
  90 
  91 SCTPAPI_PKGS     = com.sun.nio.sctp
  92 
  93 ifeq ($(PLATFORM), macosx)
  94 APPLE_EXT_PKGS   = com.apple.concurrent   \
  95                    com.apple.eawt         \
  96                    com.apple.eawt.event   \
  97                    com.apple.eio
  98 endif
  99 
 100 # non-core packages in rt.jar
 101 NON_CORE_PKGS    = $(DOMAPI_PKGS) \
 102                    $(MGMT_PKGS) \
 103                    $(JAAS_PKGS) \
 104                    $(JDKNET_PKGS) \
 105                    $(JGSS_PKGS) \
 106                    $(NIO_PKGS) \
 107                    $(OLD_JSSE_PKGS) \
 108                    $(HTTPSERVER_PKGS) \
 109                    $(SMARTCARDIO_PKGS) \
 110                    $(SCTPAPI_PKGS) \
 111                    $(APPLE_EXT_PKGS)
 112