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

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

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
« no previous file with comments | « samples/openglui/emulator/emulator.gyp ('k') | samples/openglui/pubspec.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2013, 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 'variables': { 6 'variables': {
7 # Disable the OpenGLUI embedder by default on desktop OSes. Note, 7 # Disable the OpenGLUI embedder by default on desktop OSes. Note,
8 # to build this on the desktop, you need GLUT installed. 8 # to build this on the desktop, you need GLUT installed.
9 # TODO(vsm): This is also defined in runtime/dart-runtime.gyp. Can we 9 # TODO(vsm): This is also defined in runtime/dart-runtime.gyp. Can we
10 # reuse that definition? 10 # reuse that definition?
11 'enable_openglui%': 0, 11 'enable_openglui%': 0,
12 }, 12 },
13 'targets': [ 13 'targets': [
14 { 14 {
15 'target_name': 'openglui_sample', 15 'target_name': 'openglui_sample',
16 'type': 'none', 16 'type': 'none',
17 'conditions': [ 17 'conditions': [
18 ['OS=="android"', { 18 ['OS=="android"', {
19 'dependencies': [ 19 'dependencies': [
20 'android/android.gyp:android_sample', 20 'android-webgl-raytrace/android.gyp:android_app',
21 'android-canvas-tests/android.gyp:android_app',
22 'android-blasteroids/android.gyp:android_app',
21 ], 23 ],
22 }, 24 },
23 ], 25 ],
24 ['enable_openglui==1', { 26 ['enable_openglui==1', {
25 'dependencies': [ 27 'dependencies': [
26 'emulator/emulator.gyp:mobile_emulator_sample', 28 'emulator/emulator.gyp:mobile_emulator_app',
27 ], 29 ],
28 }, 30 },
29 ], 31 ],
30 ], 32 ],
31 }, 33 },
32 ], 34 ],
33 } 35 }
OLDNEW
« no previous file with comments | « samples/openglui/emulator/emulator.gyp ('k') | samples/openglui/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698