0N/A#
797N/A# Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
553N/A# published by the Free Software Foundation. Oracle designates this
0N/A# particular file as subject to the "Classpath" exception as provided
553N/A# by Oracle in the LICENSE file that accompanied this code.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
553N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
553N/A# or visit www.oracle.com if you need additional information or have any
553N/A# questions.
0N/A#
0N/A
0N/A# This is the JDK used to build and run the bootstrap version of javac.
0N/A# The bootstrap javac is used to compile both boostrap versions of the
0N/A# other tools, and product versions of all the tools.
370N/A# Override this path as needed, either on the command line or in
0N/A# one of the standard user build.properties files (see build.xml)
0N/A
370N/A# boot.java.home = /opt/jdk/1.6.0
0N/Aboot.java = ${boot.java.home}/bin/java
0N/Aboot.javac = ${boot.java.home}/bin/javac
285N/Aboot.javac.source = 6
285N/Aboot.javac.target = 6
0N/A
0N/A# This is the JDK used to run the product version of the tools,
0N/A# for example, for testing. If you're building a complete JDK, specify that.
370N/A# Override this path as needed, either on the command line or in
0N/A# one of the standard user build.properties files (see build.xml)
0N/A
366N/A# target.java.home = /opt/jdk/1.7.0
0N/Atarget.java = ${target.java.home}/bin/java
0N/A
0N/A# Version info -- override as needed
0N/Ajdk.version = 1.7.0
0N/Abuild.number = b00
0N/Amilestone = internal
0N/A
0N/A# FIXME -- these need to match the standard values
0N/A# If we include date in full.version (ie for developer build)
0N/A# we will need to make sure the build is idempotent (i.e.
0N/A# repeated builds don't rebuild the tools, because of new
0N/A# timestamps
0N/A# FIXME -- need to include openjdk as needed
0N/Arelease = ${jdk.version}-${milestone}
0N/Abootstrap.release = ${release}_bootstrap
0N/Afull.version = ${release}-${build.number}
0N/Abootstrap.full.version = ${bootstrap.release}-${build.number}
0N/A
0N/A# options for the <javac> tasks used to compile the tools
331N/Ajavac.source = 7
331N/Ajavac.target = 7
0N/Ajavac.debug = true
0N/Ajavac.debuglevel = source,lines
0N/Ajavac.no.jdk.warnings = -XDignore.symbol.file=true
0N/A# set the following to -version to verify the versions of javac being used
370N/Ajavac.version.opt =
0N/A# in time, there should be no exceptions to -Xlint:all
506N/Ajavac.lint.opts = -Xlint:all,-deprecation -Werror
0N/A
0N/A# options for the <javadoc> task for javac
971N/A#javadoc.jls3.url=http://java.sun.com/docs/books/jls/
971N/A#javadoc.jls3.cite=&lt;a href=&quot;${javadoc.jls3.url}&quot;&gt;The Java Language Specification, Third Edition&lt;/a&gt;
971N/A#javadoc.jls3.option=-tag "jls3:a:See &lt;cite&gt;${javadoc.jls3.cite}&lt;/cite&gt;:"
971N/A
971N/A
971N/Ajavadoc.jls.cite=The Java&trade; Language Specification
971N/A
971N/Ajavadoc.jls.option=-tag "jls:a:See &lt;cite&gt;${javadoc.jls.cite}&lt;/cite&gt;:"
971N/A
971N/A
971N/A
971N/A
0N/A
0N/A# jtreg, used to run the JDK regression tests
577N/A# See http://openjdk.java.net/jtreg/
370N/A# Override this path as needed, either on the command line or in
0N/A# one of the standard user build.properties files (see build.xml)
0N/A
577N/A# jtreg.home = /opt/jtreg/4.1
0N/A
0N/A# findbugs
577N/A# See http://findbugs.sourceforge.net/
370N/A# Override this path as needed, either on the command line or in
0N/A# one of the standard user build.properties files (see build.xml)
0N/A
0N/A# findbugs.home = /opt/findbugs/1.2.1
0N/A
577N/A# vizant (graph visualization tool for Ant)
577N/A# See http://vizant.sourceforge.net/
577N/A# Override this path as needed, either on the command line or in
577N/A# one of the standard user build.properties files (see build.xml)
577N/A
577N/A# vizant.jar = /opt/vizant/0.1.2/vizant-0.1.2.jar
577N/A# dot = dot
577N/A
0N/A#------------------------------------------------------------
0N/A
0N/A# The following properties define the packages for each of the tools.
0N/A# Syntactically, they should be suitable as arguments for the "includes"
0N/A# parameter of Ant filesets. In particular, note the trailing '/'.
0N/A
0N/Ajavac.includes = \
370N/A javax/annotation/processing/ \
370N/A javax/lang/model/ \
370N/A javax/tools/ \
608N/A com/sun/source/ \
608N/A com/sun/tools/javac/
0N/A
0N/Ajavac.tests = \
370N/A tools/javac
370N/A
370N/A#
370N/A
0N/Ajavadoc.includes = \
370N/A com/sun/javadoc/ \
370N/A com/sun/tools/javadoc/
0N/A
0N/Ajavadoc.tests = \
370N/A tools/javadoc/
370N/A
370N/A#
370N/A
0N/Adoclets.includes = \
370N/A com/sun/tools/doclets/
0N/A
0N/Adoclets.tests = \
370N/A com/sun/javadoc/
370N/A
370N/A#
0N/A
0N/Ajavah.includes = \
370N/A com/sun/tools/javah/
0N/A
0N/Ajavah.tests = \
370N/A tools/javah/
370N/A
370N/A#
0N/A
0N/Ajavap.includes = \
370N/A com/sun/tools/classfile/ \
370N/A com/sun/tools/javap/ \
370N/A sun/tools/javap/
0N/A
0N/Ajavap.tests = \
370N/A tools/javap/
370N/A
370N/A#
0N/A
0N/Aapt.includes = \
370N/A com/sun/mirror/ \
370N/A com/sun/tools/apt/
0N/A
0N/Aapt.tests = \
370N/A tools/apt/
370N/A
370N/A#
0N/A
578N/A# The following files require the latest JDK to be available.
578N/A# The API can be provided by using a suitable boot.java.home
578N/A# or by setting import.jdk
578N/Arequire.latest.jdk.files = \
449N/A com/sun/tools/javac/nio/*.java
440N/A
440N/A# The following files in the import jdk source directory are required
578N/A# in order to compile the files defined in ${require.latest.jdk.files}
449N/A#
449N/A# For NIO, the list of stub files is defined by the contents of the primary
449N/A# API packages, together with such types that may be required in order to
449N/A# compile the stubs. Some of these dependencies would go away if the stub
449N/A# generator were to be improved -- e.g. by removing unnecessary imports.
449N/A#
449N/Aimport.jdk.stub.files = \
449N/A java/io/File.java \
449N/A java/nio/file/**.java \
449N/A java/nio/file/attribute/**.java \
449N/A java/nio/file/spi/**.java \
449N/A java/nio/channels/AsynchronousChannel.java \
449N/A java/nio/channels/AsynchronousFileChannel.java \
449N/A java/nio/channels/CompletionHandler.java \
449N/A java/nio/channels/SeekableByteChannel.java
440N/A
370N/A# The following value is used by the main jtreg target.
370N/A# An empty value means all tests
370N/A# Override as desired to run a specific set of tests
370N/Ajtreg.tests =