< 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


  83     com.sun.source.util \
  84     jdk
  85 
  86 NASHORNAPI_PKGS = jdk.nashorn.api.scripting
  87 
  88 SMARTCARDIO_PKGS = javax.smartcardio
  89 
  90 SCTPAPI_PKGS = com.sun.nio.sctp
  91 
  92 ifeq ($(PLATFORM), macosx)
  93   APPLE_EXT_PKGS = com.apple.concurrent \
  94       com.apple.eawt \
  95       com.apple.eawt.event \
  96       com.apple.eio
  97 endif
  98 
  99 JDK_PKGS = jdk \
 100      jdk.net \
 101      jdk.management.cmm
 102 


 103 # non-core packages in rt.jar
 104 NON_CORE_PKGS = $(DOMAPI_PKGS) \
 105     $(MGMT_PKGS) \
 106     $(JAAS_PKGS) \
 107     $(JGSS_PKGS) \
 108     $(NIO_PKGS) \
 109     $(OLD_JSSE_PKGS) \
 110     $(HTTPSERVER_PKGS) \
 111     $(SMARTCARDIO_PKGS) \
 112     $(SCTPAPI_PKGS) \
 113     $(APPLE_EXT_PKGS) \
 114     $(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


  83     com.sun.source.util \
  84     jdk
  85 
  86 NASHORNAPI_PKGS = jdk.nashorn.api.scripting
  87 
  88 SMARTCARDIO_PKGS = javax.smartcardio
  89 
  90 SCTPAPI_PKGS = com.sun.nio.sctp
  91 
  92 ifeq ($(PLATFORM), macosx)
  93   APPLE_EXT_PKGS = com.apple.concurrent \
  94       com.apple.eawt \
  95       com.apple.eawt.event \
  96       com.apple.eio
  97 endif
  98 
  99 JDK_PKGS = jdk \
 100      jdk.net \
 101      jdk.management.cmm
 102 
 103 JACCESSAPI_PKGS = com.sun.java.accessibility.util
 104 
 105 # non-core packages in rt.jar
 106 NON_CORE_PKGS = $(DOMAPI_PKGS) \
 107     $(MGMT_PKGS) \
 108     $(JAAS_PKGS) \
 109     $(JGSS_PKGS) \
 110     $(NIO_PKGS) \
 111     $(OLD_JSSE_PKGS) \
 112     $(HTTPSERVER_PKGS) \
 113     $(SMARTCARDIO_PKGS) \
 114     $(SCTPAPI_PKGS) \
 115     $(APPLE_EXT_PKGS) \
 116     $(JDK_PKGS) \
 117     $(JACCESSAPI_PKGS)
< prev index next >