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

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

Issue 11416343: Refactored Android samples / embedder. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added copyright Created 8 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 | 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
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
2 <project> 6 <project>
3 <target name="-pre-build"> 7 <target name="-pre-build">
4 <mkdir dir="res/drawable-hdpi"/> 8 <mkdir dir="res/drawable-hdpi"/>
5 <mkdir dir="res/drawable-ldpi"/> 9 <mkdir dir="res/drawable-ldpi"/>
6 <mkdir dir="res/drawable-mdpi"/> 10 <mkdir dir="res/drawable-mdpi"/>
7 <mkdir dir="res/drawable-xhdpi"/> 11 <mkdir dir="res/drawable-xhdpi"/>
8 <exec executable="xxd"> 12 <exec executable="xxd">
9 <arg value="-r"/> 13 <arg value="-r"/>
10 <arg value="ic_launcher.png-hdpi.hex"/> 14 <arg value="ic_launcher.png-hdpi.hex"/>
11 <arg value="res/drawable-hdpi/ic_launcher.png"/> 15 <arg value="res/drawable-hdpi/ic_launcher.png"/>
(...skipping 13 matching lines...) Expand all
25 <arg value="ic_launcher.png-xhdpi.hex"/> 29 <arg value="ic_launcher.png-xhdpi.hex"/>
26 <arg value="res/drawable-xhdpi/ic_launcher.png"/> 30 <arg value="res/drawable-xhdpi/ic_launcher.png"/>
27 </exec> 31 </exec>
28 </target> 32 </target>
29 <target name="-pre-compile"> 33 <target name="-pre-compile">
30 <exec executable="ndk-build" dir="jni"> 34 <exec executable="ndk-build" dir="jni">
31 <arg line="V=1" /> 35 <arg line="V=1" />
32 </exec> 36 </exec>
33 </target> 37 </target>
34 <target name="-post-compile"> 38 <target name="-post-compile">
35 <copy file="obj/local/x86/libandroid_extension.so"
36 tofile="assets/dart/libandroid_extension.so"/>
37 </target> 39 </target>
38 </project> 40 </project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698