Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(724)

Side by Side Diff: build.xml

Issue 1142323005: Make TableClassifierTest independent of browser window dimention (Closed) Base URL: git@github.com:chromium/dom-distiller.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8" ?> 1 <?xml version="1.0" encoding="utf-8" ?>
2 <!-- 2 <!--
3 Copyright 2014 The Chromium Authors. All rights reserved. 3 Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <project name="DomDistiller" default="build" basedir="."> 7 <project name="DomDistiller" default="build" basedir=".">
8 <property environment="env"/> 8 <property environment="env"/>
9 <!-- Arguments to gwtc and devmode targets --> 9 <!-- Arguments to gwtc and devmode targets -->
10 <property name="gwt.args" value="-XclosureCompiler -XnoclassMetadata -Xnocheck Casts -style OBF" /> 10 <property name="gwt.args" value="-XclosureCompiler -XnoclassMetadata -Xnocheck Casts -style OBF" />
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 <arg value="DomDistillerJsTest"/> 223 <arg value="DomDistillerJsTest"/>
224 </java> 224 </java>
225 </target> 225 </target>
226 226
227 227
228 <!-- Run jstests for the Linux platform --> 228 <!-- Run jstests for the Linux platform -->
229 <target name="-jstests.linux" if="isLinux"> 229 <target name="-jstests.linux" if="isLinux">
230 <exec executable="xvfb-run" failonerror="true"> 230 <exec executable="xvfb-run" failonerror="true">
231 <env key="PATH" path="${env.PATH}:${basedir}/buildtools"/> 231 <env key="PATH" path="${env.PATH}:${basedir}/buildtools"/>
232 <arg value="--auto-servernum"/> 232 <arg value="--auto-servernum"/>
233 <arg value="-s"/>
234 <arg value="-screen 0 1024x768x24"/>
233 <arg value="./run_jstests.py"/> 235 <arg value="./run_jstests.py"/>
234 <arg line="--filter=${test.filter} 236 <arg line="--filter=${test.filter}
235 --debug_level ${test.debug_level} 237 --debug_level ${test.debug_level}
236 --shuffle ${test.shuffle} 238 --shuffle ${test.shuffle}
237 --repeat ${test.repeat}"/> 239 --repeat ${test.repeat}"/>
238 </exec> 240 </exec>
239 </target> 241 </target>
240 242
241 <!-- Run jstests for the Mac OS X platform --> 243 <!-- Run jstests for the Mac OS X platform -->
242 <target name="-jstests.mac" if="isMac"> 244 <target name="-jstests.mac" if="isMac">
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 <delete dir="war/domdistillerjstest" failonerror="false" /> 282 <delete dir="war/domdistillerjstest" failonerror="false" />
281 <delete file="war/DomDistiller.war" failonerror="false" /> 283 <delete file="war/DomDistiller.war" failonerror="false" />
282 <delete dir="gwt-unitCache" failonerror="false" /> 284 <delete dir="gwt-unitCache" failonerror="false" />
283 <delete dir="out" failonerror="false" /> 285 <delete dir="out" failonerror="false" />
284 <delete failonerror="false" includeemptydirs="true"> 286 <delete failonerror="false" includeemptydirs="true">
285 <fileset dir="war" includes="*JUnit/**"/> 287 <fileset dir="war" includes="*JUnit/**"/>
286 </delete> 288 </delete>
287 </target> 289 </target>
288 290
289 </project> 291 </project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698