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

Side by Side Diff: src/DomDistiller.gwt.xml

Issue 762563003: Roll gwt to 2.7.0 (from 2.5.1) (Closed) Base URL: https://code.google.com/p/dom-distiller/@master
Patch Set: Created 6 years 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 <!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.user.User'/> 11 <inherits name='com.google.gwt.user.User'/>
12 <inherits name='com.google.gwt.json.JSON'/> 12 <inherits name='com.google.gwt.json.JSON'/>
13 <inherits name='Proto'/> 13 <inherits name='Proto'/>
14 14
15 <inherits name='org.timepedia.exporter.Exporter'/>
16 <set-property name='export' value='yes'/>
17
18 <set-property name='gwt.logging.enabled' value='TRUE'/> 15 <set-property name='gwt.logging.enabled' value='TRUE'/>
19 16
20 <set-property name='user.agent' value='safari'/> 17 <set-property name='user.agent' value='safari'/>
21 18
22 <entry-point class='com.dom_distiller.client.DomDistillerEntry'/> 19 <entry-point class='com.dom_distiller.client.DomDistillerEntry'/>
23 20
24 <!-- Specify the paths for translatable code --> 21 <!-- Specify the paths for translatable code -->
25 <source path='com/dom_distiller/client'/> 22 <source path='com/dom_distiller/client'/>
26 <source path='de'/> 23 <source path='de'/>
27 24
25 <define-linker name='sso' class='com.google.gwt.core.linker.SingleScriptLinker '/>
nyquist 2014/12/02 06:31:03 Nit: Why 'sso' and not 'ssl'?
cjhopman 2014/12/02 20:10:35 Because that's what gwt uses for the abbreviation
26 <add-linker name='sso'/>
27
28 <!-- This provides simple implementations of java platform features used by bo ilerpipe but not 28 <!-- This provides simple implementations of java platform features used by bo ilerpipe but not
29 available in a gwt project --> 29 available in a gwt project -->
30 <super-source path='fake_java_platform'/> 30 <super-source path='fake_java_platform'/>
31 31
32 </module> 32 </module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698