| 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='domdistiller'> | 9 <module rename-to='domdistiller'> |
| 10 <!-- Inherit the core Web Toolkit stuff. --> | 10 <!-- Inherit the core Web Toolkit stuff. --> |
| 11 <inherits name='com.google.gwt.core.Core'/> | 11 <inherits name='com.google.gwt.core.Core'/> |
| 12 <inherits name='com.google.gwt.user.User'/> | 12 <inherits name='com.google.gwt.user.User'/> |
| 13 <inherits name='com.google.gwt.json.JSON'/> | 13 <inherits name='com.google.gwt.json.JSON'/> |
| 14 <inherits name='Proto'/> | 14 <inherits name='Proto'/> |
| 15 | 15 |
| 16 <set-property name='gwt.logging.enabled' value='TRUE'/> | 16 <set-property name='gwt.logging.enabled' value='TRUE'/> |
| 17 | 17 |
| 18 <set-property name='user.agent' value='safari'/> | 18 <set-property name='user.agent' value='safari'/> |
| 19 | 19 |
| 20 <entry-point class='org.chromium.distiller.DomDistillerEntry'/> | 20 <entry-point class='org.chromium.distiller.DomDistillerEntry'/> |
| 21 | 21 |
| 22 <!-- Specify the paths for translatable code --> | 22 <!-- Specify the paths for translatable code --> |
| 23 <source path='org/chromium/distiller'> | 23 <source path='org/chromium/distiller'/> |
| 24 <exclude name="dev/*" /> | |
| 25 </source> | |
| 26 | 24 |
| 27 <define-linker name="distillerlinker" class="org.chromium.distiller.dev.Distil
lerScriptLinker" /> | 25 <!-- Use the SingleScriptLinker. --> |
| 28 <add-linker name='distillerlinker'/> | 26 <add-linker name='sso'/> |
| 29 </module> | 27 </module> |
| OLD | NEW |