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

Side by Side Diff: samples/openglui/android-canvas-tests/custom_rules.xml

Issue 13345002: Cleaned up OpenGLUI samples and added Blasteroids. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 <!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 for details. All rights reserved. Use of this source code is governed by a 3 for details. All rights reserved. Use of this source code is governed by a
4 BSD-style license that can be found in the LICENSE file. --> 4 BSD-style license that can be found in the LICENSE file. -->
5 5
6 <project> 6 <project>
7 <target name="-pre-build"> 7 <target name="-pre-build">
8 <mkdir dir="res/drawable-hdpi"/>
9 <mkdir dir="res/drawable-ldpi"/>
10 <mkdir dir="res/drawable-mdpi"/>
11 <mkdir dir="res/drawable-xhdpi"/>
12 <mkdir dir="assets/music"/>
13 <exec executable="xxd">
14 <arg value="-r"/>
15 <arg value="ic_launcher.png-hdpi.hex"/>
16 <arg value="res/drawable-hdpi/ic_launcher.png"/>
17 </exec>
18 <exec executable="xxd">
19 <arg value="-r"/>
20 <arg value="ic_launcher.png-ldpi.hex"/>
21 <arg value="res/drawable-ldpi/ic_launcher.png"/>
22 </exec>
23 <exec executable="xxd">
24 <arg value="-r"/>
25 <arg value="ic_launcher.png-mdpi.hex"/>
26 <arg value="res/drawable-mdpi/ic_launcher.png"/>
27 </exec>
28 <exec executable="xxd">
29 <arg value="-r"/>
30 <arg value="ic_launcher.png-xhdpi.hex"/>
31 <arg value="res/drawable-xhdpi/ic_launcher.png"/>
32 </exec>
33 <exec executable="xxd">
34 <arg value="-r"/>
35 <arg value="../src/chrome.hex"/>
36 <arg value="assets/dart/chrome.png"/>
37 </exec>
38 <exec executable="xxd">
39 <arg value="-r"/>
40 <arg value="la_ere_gymnopedie.mp3.hex"/>
41 <arg value="assets/music/la_ere_gymnopedie.mp3"/>
42 </exec>
43 <move file="assets/dart/openglui_canvas_tests.dart" 8 <move file="assets/dart/openglui_canvas_tests.dart"
44 tofile="assets/dart/main.dart" 9 tofile="assets/dart/main.dart"
45 failonerror="false" /> 10 failonerror="false" />
46 </target> 11 </target>
47 <target name="-pre-compile"> 12 <target name="-pre-compile">
48 </target> 13 </target>
49 <target name="-post-compile"> 14 <target name="-post-compile">
50 </target> 15 </target>
51 </project> 16 </project>
OLDNEW
« no previous file with comments | « samples/openglui/android-canvas-tests/android.gyp ('k') | samples/openglui/android-canvas-tests/ic_launcher.png-hdpi.hex » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698