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

Side by Side Diff: samples/openglui/android/android.gyp

Issue 12506004: Added window.requestAnimationFrame. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'conditions': [ 6 'conditions': [
7 ['OS=="android"', 7 ['OS=="android"',
8 { 8 {
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'android_sample', 11 'target_name': 'android_sample',
12 'type': 'none', 12 'type': 'none',
13 'dependencies': [ 13 'dependencies': [
14 'copy_extension', 14 'copy_extension',
15 'copy_main', 15 'copy_main',
16 '../../../runtime/dart-runtime.gyp:android_embedder', 16 '../../../runtime/dart-runtime.gyp:android_embedder',
17 'copy_embedder', 17 'copy_embedder',
18 ], 18 ],
19 'actions': [ 19 'actions': [
20 # TODO(gram) - this should have a debug and release version. 20 # TODO(gram) - this should have a debug and release version.
21 { 21 {
22 'action_name': 'build_app', 22 'action_name': 'build_app',
23 'inputs': [ 23 'inputs': [
24 '<(PRODUCT_DIR)/lib.target/libandroid_embedder.so' 24 '<(PRODUCT_DIR)/lib.target/libandroid_embedder.so',
25 '../../../runtime/embedders/openglui/common/gl.dart',
26 '../src/openglui_raytrace.dart',
27 '../src/openglui_canvas_tests.dart'
25 ], 28 ],
26 'outputs': [ 29 'outputs': [
27 'bin/NativeActivity-debug.apk', 30 'bin/NativeActivity-debug.apk',
28 ], 31 ],
29 'action': [ 'ant', 'debug' ] 32 'action': [ 'ant', 'debug' ]
30 } 33 }
31 ] 34 ]
32 }, 35 },
33 { 36 {
34 'target_name': 'copy_embedder', 37 'target_name': 'copy_embedder',
(...skipping 27 matching lines...) Expand all
62 ], 65 ],
63 }], 66 }],
64 }, 67 },
65 ] 68 ]
66 } 69 }
67 ] 70 ]
68 ] 71 ]
69 } 72 }
70 73
71 74
OLDNEW
« no previous file with comments | « runtime/embedders/openglui/common/vm_glue.cc ('k') | samples/openglui/src/openglui_canvas_tests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698