| OLD | NEW |
| 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 <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.5.1//EN" | 7 <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.5.1//EN" |
| 8 "http://google-web-toolkit.googlecode.com/svn/tags/2.5.1/distro-source/core/sr
c/gwt-module.dtd"> | 8 "http://google-web-toolkit.googlecode.com/svn/tags/2.5.1/distro-source/core/sr
c/gwt-module.dtd"> |
| 9 <module rename-to='domdistillerjstest'> | 9 <module rename-to='domdistillerjstest'> |
| 10 <!-- Inherit the core Web Toolkit stuff. --> | 10 <!-- Inherit the core Web Toolkit stuff. --> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 <set-configuration-property name='compiler.emulatedStack.recordFileNames' valu
e='true'/> | 22 <set-configuration-property name='compiler.emulatedStack.recordFileNames' valu
e='true'/> |
| 23 <set-configuration-property name='compiler.emulatedStack.recordLineNumbers' va
lue='true'/> | 23 <set-configuration-property name='compiler.emulatedStack.recordLineNumbers' va
lue='true'/> |
| 24 | 24 |
| 25 <entry-point class='org.chromium.distiller.JsTestEntry'/> | 25 <entry-point class='org.chromium.distiller.JsTestEntry'/> |
| 26 | 26 |
| 27 <generate-with class='org.chromium.distiller.rebind.JsTestEntryGenerator'> | 27 <generate-with class='org.chromium.distiller.rebind.JsTestEntryGenerator'> |
| 28 <when-type-assignable class='org.chromium.distiller.JsTestSuiteBuilder'/> | 28 <when-type-assignable class='org.chromium.distiller.JsTestSuiteBuilder'/> |
| 29 </generate-with> | 29 </generate-with> |
| 30 | 30 |
| 31 <!-- Specify the paths for translatable code --> | 31 <!-- Specify the paths for translatable code --> |
| 32 <source path='org/chromium/distiller'> | 32 <source path='org/chromium/distiller' excludes='rebind/*'/> |
| 33 <exclude name="rebind/*" /> | |
| 34 <exclude name="dev/*" /> | |
| 35 </source> | |
| 36 | 33 |
| 37 <define-linker name="distillerlinker" class="org.chromium.distiller.dev.Distil
lerScriptLinker" /> | 34 <!-- Use the SingleScriptLinker. --> |
| 38 <add-linker name='distillerlinker'/> | 35 <add-linker name='sso'/> |
| 39 </module> | 36 </module> |
| OLD | NEW |