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

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

Issue 11883013: Refactored OpenGL embedder that works on Android, Mac or Linux. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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/assets/dart/main.dart ('k') | samples/android_sample/jni/Android.mk » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"/> 8 <mkdir dir="res/drawable-hdpi"/>
9 <mkdir dir="res/drawable-ldpi"/> 9 <mkdir dir="res/drawable-ldpi"/>
10 <mkdir dir="res/drawable-mdpi"/> 10 <mkdir dir="res/drawable-mdpi"/>
(...skipping 17 matching lines...) Expand all
28 <exec executable="xxd"> 28 <exec executable="xxd">
29 <arg value="-r"/> 29 <arg value="-r"/>
30 <arg value="ic_launcher.png-xhdpi.hex"/> 30 <arg value="ic_launcher.png-xhdpi.hex"/>
31 <arg value="res/drawable-xhdpi/ic_launcher.png"/> 31 <arg value="res/drawable-xhdpi/ic_launcher.png"/>
32 </exec> 32 </exec>
33 <exec executable="xxd"> 33 <exec executable="xxd">
34 <arg value="-r"/> 34 <arg value="-r"/>
35 <arg value="la_ere_gymnopedie.mp3.hex"/> 35 <arg value="la_ere_gymnopedie.mp3.hex"/>
36 <arg value="assets/music/la_ere_gymnopedie.mp3"/> 36 <arg value="assets/music/la_ere_gymnopedie.mp3"/>
37 </exec> 37 </exec>
38 <move file="assets/dart/raytrace.dart"
39 tofile="assets/dart/main.dart"
40 failonerror="false" />
38 </target> 41 </target>
39 <target name="-pre-compile"> 42 <target name="-pre-compile">
40 </target> 43 </target>
41 <target name="-post-compile"> 44 <target name="-post-compile">
42 </target> 45 </target>
43 </project> 46 </project>
OLDNEW
« no previous file with comments | « samples/android_sample/assets/dart/main.dart ('k') | samples/android_sample/jni/Android.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698