| Index: compiler/build.xml
|
| diff --git a/compiler/build.xml b/compiler/build.xml
|
| index 073bfb3f1c14c7bb933d81fbf1bba83ca3d9e56f..c611430cff9b635514d6e197c1fdcc82b84d4571 100644
|
| --- a/compiler/build.xml
|
| +++ b/compiler/build.xml
|
| @@ -1,8 +1,14 @@
|
| +<!--
|
| + Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| + for details. All rights reserved. Use of this source code is governed by a
|
| + BSD-style license that can be found in the LICENSE file.
|
| + -->
|
| <project default="dist">
|
| <!--
|
| - DO NOT EDIT THIS FILE. This file is no longer used to build
|
| + EDIT DARTC.XML FIRST. This file is no longer used to build
|
| dartc proper. It is only here to avoid breaking dartium.gyp
|
| - short term. Change dartc.xml instead.
|
| + short term. Change dartc.xml to get everything working,
|
| + then update this file to match.
|
| -->
|
|
|
| <import file="sources.xml"/>
|
| @@ -32,8 +38,6 @@
|
|
|
| <property name="third_party.dir" value="../third_party"/>
|
|
|
| - <property name="d8" location="${third_party.dir}/v8/d8"/>
|
| -
|
| <property name="test_py" location="../tools/test.py"/>
|
|
|
| <!--
|
| @@ -148,21 +152,12 @@
|
| </copy>
|
| <chmod file="${dist.dir}/bin/dartc" perm="a+rx"/>
|
|
|
| - <copy file="scripts/dartc_test.sh" tofile="${dist.dir}/bin/dartc_test">
|
| - <filterset>
|
| - <filter token="CLASSPATH" value="$DARTC_LIBS/dartc.jar:${dartc.classpath.runtime.unix}"/>
|
| - <filter token="D8_EXEC" value="${d8}"/>
|
| - </filterset>
|
| - </copy>
|
| - <chmod file="${dist.dir}/bin/dartc_test" 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="dartc_run.sh"/>
|
| - <include name="dartc_size.sh"/>
|
| <include name="dartc_metrics.sh"/>
|
| </fileset>
|
| <filterset>
|
| @@ -170,7 +165,6 @@
|
| </filterset>
|
| </copy>
|
| <chmod file="${build.dir}/dartc_run.sh" perm="a+rx"/>
|
| - <chmod file="${build.dir}/dartc_size.sh" perm="a+rx"/>
|
| <chmod file="${build.dir}/dartc_metrics.sh" perm="a+rx"/>
|
|
|
| <!--
|
|
|