| Index: compiler/dartc.xml
|
| diff --git a/compiler/dart_analyzer.xml b/compiler/dartc.xml
|
| similarity index 69%
|
| rename from compiler/dart_analyzer.xml
|
| rename to compiler/dartc.xml
|
| index 8d7807bc5bba8ce773b40cc98e295987bb94fbf6..30b724c0105ede07786d8e142ddb727db54b10a9 100644
|
| --- a/compiler/dart_analyzer.xml
|
| +++ b/compiler/dartc.xml
|
| @@ -6,6 +6,12 @@
|
| <project default="dist">
|
| <import file="sources.xml"/>
|
| <import file="test_sources.xml"/>
|
| + <import file="corelib_sources.xml"/>
|
| + <import file="compiler_corelib_sources.xml"/>
|
| + <import file="domlib_sources.xml"/>
|
| + <import file="htmllib_sources.xml"/>
|
| + <import file="jsonlib_sources.xml"/>
|
| + <import file="isolatelib_sources.xml"/>
|
|
|
| <!--
|
| The file build.properties does not exist. If provided, properties can be customized.
|
| @@ -21,7 +27,7 @@
|
|
|
| <property name="build.test.classes.dir" value="${build.dir}/test/classes"/>
|
|
|
| - <property name="dart_analyzer.jar" value="${build.dir}/dart_analyzer.jar"/>
|
| + <property name="dartc.jar" value="${build.dir}/dartc.jar"/>
|
|
|
| <property name="dist.dir" value="${build.dir}/dist"/>
|
|
|
| @@ -84,7 +90,7 @@
|
| </target>
|
|
|
| <!--
|
| - We rely on GYP to call these targets when the dart_analyzer dependencies change, hence this
|
| + We rely on GYP to call these targets when the dartc dependencies change, hence this
|
| ant file cannot be used standalone.
|
| -->
|
| <target name="compile-tests" depends="compile" description="Compiles all of the java tests and copies the resources to the test classes directory." >
|
| @@ -106,57 +112,55 @@
|
| </copy>
|
| </target>
|
|
|
| - <target name="dart_analyzer.jar" depends="compile"
|
| - description="Creates a jar for dart analyzer w/o bundling dependencies.">
|
| - <jar destfile="${dart_analyzer.jar}" basedir="${build.classes.dir}"
|
| - manifest="dart_analyzer.mf"/>
|
| + <target name="dartc.jar" depends="compile" description="Creates a jar for dartc without bundling the dependencies.">
|
| + <jar destfile="${dartc.jar}" basedir="${build.classes.dir}" manifest="dartc.mf"/>
|
| </target>
|
|
|
| - <target name="dist" depends="dart_analyzer.jar"
|
| - description="Creates a directory with a standalone distribution.">
|
| + <target name="dist" depends="dartc.jar" description="Creates a directory that contains a standalone distribution for dartc.">
|
| <!--
|
| Ensure the necessary subdirectories exist.
|
| -->
|
| <mkdir dir="${dist.dir}/bin"/>
|
| - <mkdir dir="${dist.dir}/util"/>
|
| - <mkdir dir="${dist.dir}/util/analyzer"/>
|
| + <mkdir dir="${dist.dir}/lib"/>
|
|
|
| <!--
|
| Copy the dart jar to the lib folder.
|
| -->
|
| - <copy file="${dart_analyzer.jar}" todir="${dist.dir}/util/analyzer"/>
|
| + <copy file="${dartc.jar}" todir="${dist.dir}/lib"/>
|
|
|
| <!--
|
| - Re-root the classpaths from third_party into the library folder of the distro.
|
| + Re-root the classpaths from third_party into the lib folder of the distro.
|
| -->
|
| - <pathconvert property="analyzer.classpath.runtime.unix" targetos="unix" refid="classpath.runtime">
|
| - <regexpmapper from="${third_party.dir}/(.*)" to="$DART_ANALYZER_LIBS/\1"/>
|
| + <pathconvert property="dartc.classpath.runtime.unix" targetos="unix" refid="classpath.runtime">
|
| + <regexpmapper from="${third_party.dir}/(.*)" to="$DARTC_LIBS/\1"/>
|
| </pathconvert>
|
|
|
| - <copy file="scripts/dart_analyzer.sh" tofile="${dist.dir}/bin/dart_analyzer">
|
| + <copy file="scripts/dartc.sh" tofile="${dist.dir}/bin/dartc">
|
| <filterset>
|
| - <filter token="CLASSPATH" value="$DART_ANALYZER_LIBS/dart_analyzer.jar:${analyzer.classpath.runtime.unix}"/>
|
| + <filter token="CLASSPATH" value="$DARTC_LIBS/dartc.jar:$DARTC_LIBS/corelib.jar:$DARTC_LIBS/domlib.jar:$DARTC_LIBS/htmllib.jar:$DARTC_LIBS/jsonlib.jar:$DARTC_LIBS/isolatelib.jar:${dartc.classpath.runtime.unix}"/>
|
| </filterset>
|
| </copy>
|
| - <chmod file="${dist.dir}/bin/dart_analyzer" perm="a+rx"/>
|
| + <chmod file="${dist.dir}/bin/dartc" perm="a+rx"/>
|
|
|
| <!--
|
| TODO: The following files are not strictly due to dist, move them out.
|
| -->
|
| <copy todir="${build.dir}">
|
| <fileset dir="scripts">
|
| - <include name="analyzer_metrics.sh"/>
|
| + <include name="dartc_run.sh"/>
|
| + <include name="dartc_metrics.sh"/>
|
| </fileset>
|
| <filterset>
|
| - <filter token="CLASSPATH" value="$DART_ANALYZER_LIBS/dart_analyzer.jar:${analyzer.classpath.runtime.unix}"/>
|
| + <filter token="CLASSPATH" value="$DARTC_LIBS/dartc.jar:$DARTC_LIBS/corelib.jar:$DARTC_LIBS/domlib.jar:$DARTC_LIBS/htmllib.jar:$DARTC_LIBS/jsonlib.jar:$DARTC_LIBS/isolatelib.jar:${dartc.classpath.runtime.unix}"/>
|
| </filterset>
|
| </copy>
|
| - <chmod file="${build.dir}/anlaysis_metrics.sh" perm="a+rx"/>
|
| + <chmod file="${build.dir}/dartc_run.sh" perm="a+rx"/>
|
| + <chmod file="${build.dir}/dartc_metrics.sh" perm="a+rx"/>
|
|
|
| <!--
|
| - Copy of all of the dart anaysis dependencies to the library folder.
|
| + Copy of all of the dartc dependencies to the lib folder.
|
| -->
|
| - <copy todir="${dist.dir}/util/analyzer">
|
| + <copy todir="${dist.dir}/lib">
|
| <path refid="classpath.runtime"/>
|
| <regexpmapper from="${third_party.dir}/(.*)" to="\1"/>
|
| </copy>
|
|
|