blob: 5093931d6d2f831e780c45520d5ac32c13205cf3 [file] [log] [blame]
<?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="jquery" default="main" basedir=".">
<target name="main" depends="preprocess, externc, postprocess, compc" />
<target name="preprocess" depends="download">
<exec executable="git" dir="${basedir}/../..">
<arg value="apply"/>
<arg value="--ignore-whitespace"/>
<arg value="--whitespace=nowarn"/>
<arg value="${basedir}/src/main/patch/jquery.patch"/>
</exec>
</target>
<target name="make_patch" depends="download">
<mkdir dir="${basedir}/target/reference" />
<copy todir="${basedir}/target/reference" file="${basedir}/target/downloads/jquery-1.9.js" />
<!-- we manually edit the jquery file to set the type of the $ const, then run ant diff -->
<!--<antcall target="diff" />-->
</target>
<target name="diff" >
<delete dir="${basedir}/src/main/patch" />
<mkdir dir="${basedir}/src/main/patch" />
<exec executable="git" output="${basedir}/src/main/patch/jquery.patch" >
<arg value="diff"/>
<arg value="--no-index"/>
<arg value="--"/>
<arg value="${basedir}/target/reference"/>
<arg value="${basedir}/target/downloads"/>
</exec>
<replace file="${basedir}/src/main/patch/jquery.patch" token="target/reference" value="target/downloads" />
<replace file="${basedir}/src/main/patch/jquery.patch" token="${basedir}/target/downloads" value="/externs/jquery/target/downloads" />
</target>
<target name="download" >
<mkdir dir="${basedir}/target/downloads" />
<get src="https://raw.githubusercontent.com/google/closure-compiler/master/contrib/externs/jquery-1.9.js" dest="${basedir}/target/downloads/jquery-1.9.js"/>
</target>
<target name="externc" >
<java jar="${basedir}/../../compiler-jx/lib/externc.jar" fork="true"
failonerror="false">
<arg value="+flexlib=externs" />
<arg value="-debug" />
<arg value="-load-config=${basedir}/src/main/config/externc-config.xml" />
</java>
</target>
<target name="postprocess" >
</target>
<target name="compc" >
<copy file="${basedir}/src/main/config/compile-as-config.xml"
todir="${basedir}/target" />
<java jar="${basedir}/../../compiler/lib/falcon-compc.jar" fork="true"
failonerror="true">
<arg value="+flexlib=externs/frameworks" />
<arg value="-debug" />
<arg value="-external-library-path+=${basedir}/../js/target/js.swc" />
<arg value="-load-config=${basedir}/target/compile-as-config.xml" />
<arg value="-output=${basedir}/target/jquery-1.9.swc" />
</java>
</target>
<target name="clean">
<delete failonerror="false" includeEmptyDirs="true" >
<fileset dir="${basedir}/target">
<include name="**/**"/>
<exclude name="downloads/**"/>
</fileset>
</delete>
</target>
<target name="wipe">
<delete failonerror="false" includeEmptyDirs="true" >
<fileset dir="${basedir}/target">
<include name="**/**"/>
</fileset>
</delete>
</target>
</project>