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

Side by Side Diff: samples/android_sample/custom_rules.xml

Issue 12021025: Merge the openglui samples into one. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix emulator sample build Created 7 years, 11 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
« no previous file with comments | « samples/android_sample/build.xml ('k') | samples/android_sample/ic_launcher.png-hdpi.hex » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="UTF-8"?>
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
4 BSD-style license that can be found in the LICENSE file. -->
5
6 <project>
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="la_ere_gymnopedie.mp3.hex"/>
36 <arg value="assets/music/la_ere_gymnopedie.mp3"/>
37 </exec>
38 <move file="assets/dart/raytrace.dart"
39 tofile="assets/dart/main.dart"
40 failonerror="false" />
41 </target>
42 <target name="-pre-compile">
43 </target>
44 <target name="-post-compile">
45 </target>
46 </project>
OLDNEW
« no previous file with comments | « samples/android_sample/build.xml ('k') | samples/android_sample/ic_launcher.png-hdpi.hex » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698