< prev index next >

make/common/NON_CORE_PKGS.gmk

Print this page


   1 #
   2 # Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any


  82     com.sun.source.util \
  83     jdk
  84 
  85 NASHORNAPI_PKGS = jdk.nashorn.api.scripting
  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 JDK_PKGS = jdk \
  99       jdk.net \
 100       jdk.management.cmm
 101 


 102 # non-core packages in rt.jar
 103 NON_CORE_PKGS = $(DOMAPI_PKGS) \
 104     $(MGMT_PKGS) \
 105     $(JAAS_PKGS) \
 106     $(JGSS_PKGS) \
 107     $(NIO_PKGS) \
 108     $(OLD_JSSE_PKGS) \
 109     $(HTTPSERVER_PKGS) \
 110     $(SMARTCARDIO_PKGS) \
 111     $(SCTPAPI_PKGS) \
 112     $(APPLE_EXT_PKGS) \
 113     $(JDK_PKGS)

   1 #
   2 # Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any


  82     com.sun.source.util \
  83     jdk
  84 
  85 NASHORNAPI_PKGS = jdk.nashorn.api.scripting
  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 JDK_PKGS = jdk \
  99       jdk.net \
 100       jdk.management.cmm
 101 
 102 JACCESSAPI_PKGS = com.sun.java.accessibility.util
 103 
 104 # non-core packages in rt.jar
 105 NON_CORE_PKGS = $(DOMAPI_PKGS) \
 106     $(MGMT_PKGS) \
 107     $(JAAS_PKGS) \
 108     $(JGSS_PKGS) \
 109     $(NIO_PKGS) \
 110     $(OLD_JSSE_PKGS) \
 111     $(HTTPSERVER_PKGS) \
 112     $(SMARTCARDIO_PKGS) \
 113     $(SCTPAPI_PKGS) \
 114     $(APPLE_EXT_PKGS) \
 115     $(JDK_PKGS) \
 116     $(JACCESSAPI_PKGS)
< prev index next >