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

Side by Side Diff: build.xml

Issue 1047853004: Use gtest_filter syntax in jstest filter (Closed) Base URL: git@github.com:chromium/dom-distiller.git@master
Patch Set: address comments Created 5 years, 8 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
« no previous file with comments | « no previous file | javatests/org/chromium/distiller/JsTestSuiteBase.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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" />
11 <property 11 <property
12 name="gwt.test.args" 12 name="gwt.test.args"
13 value=" 13 value="
14 -XnoclosureCompiler -optimize 0 -draftCompile 14 -XnoclosureCompiler -optimize 0 -draftCompile
15 -style DETAILED 15 -style DETAILED
16 -saveSource -saveSourceOutput out/debug 16 -saveSource -saveSourceOutput out/debug
17 -XmethodNameDisplayMode ABBREVIATED 17 -XmethodNameDisplayMode ABBREVIATED
18 "/> 18 "/>
19 <property name="gwt.shared.args" value="-failOnError -war war -XjsInteropMode JS -gen out/gen" /> 19 <property name="gwt.shared.args" value="-failOnError -war war -XjsInteropMode JS -gen out/gen" />
20 <property name="gwt.custom.args" value="" /> 20 <property name="gwt.custom.args" value="" />
21 21
22 <!-- Configure path to GWT SDK --> 22 <!-- Configure path to GWT SDK -->
23 <property name="gwt.sdk" location="third_party/gwt-2.7.0" /> 23 <property name="gwt.sdk" location="third_party/gwt-2.7.0" />
24 24
25 <property name="test.filter" value=".*" /> 25 <property name="test.filter" value="*" />
26 26
27 <property name="test.debug_level" value="0" /> 27 <property name="test.debug_level" value="0" />
28 28
29 <condition property="isLinux"> 29 <condition property="isLinux">
30 <and> 30 <and>
31 <os family="unix" /> 31 <os family="unix" />
32 32
33 <not> 33 <not>
34 <os family="mac" /> 34 <os family="mac" />
35 </not> 35 </not>
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 <delete dir="war/domdistillerjstest" failonerror="false" /> 287 <delete dir="war/domdistillerjstest" failonerror="false" />
288 <delete file="war/DomDistiller.war" failonerror="false" /> 288 <delete file="war/DomDistiller.war" failonerror="false" />
289 <delete dir="gwt-unitCache" failonerror="false" /> 289 <delete dir="gwt-unitCache" failonerror="false" />
290 <delete dir="out" failonerror="false" /> 290 <delete dir="out" failonerror="false" />
291 <delete failonerror="false" includeemptydirs="true"> 291 <delete failonerror="false" includeemptydirs="true">
292 <fileset dir="war" includes="*JUnit/**"/> 292 <fileset dir="war" includes="*JUnit/**"/>
293 </delete> 293 </delete>
294 </target> 294 </target>
295 295
296 </project> 296 </project>
OLDNEW
« no previous file with comments | « no previous file | javatests/org/chromium/distiller/JsTestSuiteBase.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698