You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2016/04/22 19:24:55 UTC

[08/35] git commit: [flex-falcon] [refs/heads/feature/maven-migration-test] - Ant build for compiler-build-tools

Ant build for compiler-build-tools


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/e8b60e5b
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/e8b60e5b
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/e8b60e5b

Branch: refs/heads/feature/maven-migration-test
Commit: e8b60e5b7493c5c19c76c02730aa02a222721f6b
Parents: f43f56f
Author: Alex Harui <ah...@apache.org>
Authored: Tue Apr 19 07:50:33 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Apr 22 09:02:56 2016 -0700

----------------------------------------------------------------------
 compiler-build-tools/build.xml | 125 ++++++++++++++++++++++++++++++++++++
 1 file changed, 125 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/e8b60e5b/compiler-build-tools/build.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/build.xml b/compiler-build-tools/build.xml
new file mode 100644
index 0000000..e5972dd
--- /dev/null
+++ b/compiler-build-tools/build.xml
@@ -0,0 +1,125 @@
+<?xml version="1.0" ?>
+
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+
+<project name="compiler-build-tools" default="main" basedir=".">
+
+    <!-- 
+
+        PROPERTIES
+
+    -->
+
+    <!-- The 'compiler' property is the absolute path, with forward slashes, -->
+    <!-- to the 'compiler-build-tools' directory that contains this file. -->
+    <!-- All input paths are expressed as absolute paths starting with ${compiler}. -->
+    <pathconvert property="compiler" dirsep="/">
+        <path location="${basedir}"/>
+    </pathconvert>
+    
+    <!-- Properties can be overridden locally by loading a local.properties file -->
+    <!-- Java 8 users probably need javadoc.params=-Xdoclint:none -->
+    <property file="${compiler}/local.properties"/>
+    
+    <property name="src.depend" value="true"/>
+
+    <!-- Options for <javac> tasks -->
+    <property name="javac.debug" value="true"/>
+    <property name="javac.deprecation" value="false"/>
+    <property name="javac.src" value="1.6"/>
+
+    <!-- JAR manifest entries -->
+    <property name="manifest.sealed" value="false"/>
+    <property name="manifest.Implementation-Title" value="Apache Flex Compiler"/>
+    <property name="manifest.Implementation-Version" value="${release.version}"/>
+    <property name="manifest.Implementation-Vendor" value="Apache Software Foundation"/>
+    
+    <!-- label is set by CruiseControl script based on P4 label incrementer -->
+    <condition property="build.number" value="${env.BUILD_NUMBER}">
+        <isset property="env.BUILD_NUMBER"/>
+    </condition>
+    
+    <!--
+
+        BUILD TOOL COMPILATION
+
+    -->
+	
+	<!-- The AnnotateClass tool is used to add @SupressWarnings annotations to Java code produced by ANTLR and JBurg -->
+	<target name="annotate.class"
+		    description="Compiles the AnnotateClass build tool" >
+        <mkdir dir="${compiler}/target/classes"/>
+        <javac debug="${javac.debug}" deprecation="${javac.deprecation}" destdir="${compiler}/target/classes" includeAntRuntime="true"
+            source="${javac.src}" target="${javac.src}">
+            <compilerarg value="-Xlint:all,-path,-fallthrough"/>
+            <src path="${compiler}/src/main/java"/>
+            <include name="org/apache/flex/compiler/tools/annotate/AnnotateClass.java"/>
+            <classpath>
+                <pathelement location="${compiler}/target/classes"/>
+            </classpath>
+        </javac>
+	</target>
+	
+	<!-- The UnknownTreePatternInputOutput tool is used to compile an XML file containing unknown AST patterns to a Java class -->
+    <target name="unknown.tree.pattern.input.output"
+            description="Compiles the UnknownTreePatternInputOutput tool">
+        <mkdir dir="${compiler}/target/classes"/>
+        <javac debug="${javac.debug}" deprecation="${javac.deprecation}" destdir="${compiler}/target/classes"
+            includeAntRuntime="true" source="${javac.src}" target="${javac.src}">
+            <src path="${compiler}/src/main/java"/>
+            <include name="org/apache/flex/compiler/internal/as/codegen/UnknownTreePatternInputOutput.java"/>
+            <compilerarg value="-Xlint:all,-path,-fallthrough"/>
+        </javac>
+    </target>
+	
+	<!-- The ProblemLocalizer tool is used to create a problems_en.properties file -->
+	<!-- filled with localization strings from classes extending org.apache.flex.compiler.CompilerProblem -->
+	<target name="problem.localizer"
+	        description="Compiles the ProblemLocalizer build tool">
+	    <mkdir dir="${compiler}/target/classes"/>
+	    <javac debug="${javac.debug}" deprecation="${javac.deprecation}" destdir="${compiler}/target/classes" includeAntRuntime="true"
+            source="${javac.src}" target="${javac.src}">
+	        <compilerarg value="-Xlint:all,-path,-fallthrough"/>
+	        <src path="${compiler}/tools/problemlocalizer"/>
+	        <classpath>
+	            <pathelement location="${compiler}/target/classes"/>
+	        </classpath>
+	    </javac>
+	</target>
+
+	
+    <target name="main" depends="annotate.class, unknown.tree.pattern.input.output" />
+    
+    <!--
+
+        CLEANUP
+
+    -->
+
+    <target name="clean" description="clean">
+        <delete dir="${compiler}/target/classes"/>
+    </target>
+
+    <target name="wipe" depends="clean" description="Wipes everything that didn't come from Git.">
+        <delete dir="${compiler}/lib"/>
+        <delete dir="${compiler}/utils"/>
+    </target>
+
+ </project>