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

Side by Side Diff: samples/openglui/emulator/emulator.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
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 # We should be able to make this work on Mac. We need: 5 # We should be able to make this work on Mac. We need:
6 # -framework OpenGL -framework GLUT -lm -L /usr/X11/lib 6 # -framework OpenGL -framework GLUT -lm -L /usr/X11/lib
7 7
8 { 8 {
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 14 matching lines...) Expand all
25 }, 25 },
26 { 26 {
27 'target_name': 'copy_dart_files', 27 'target_name': 'copy_dart_files',
28 'type': 'none', 28 'type': 'none',
29 'copies': [ { 29 'copies': [ {
30 'destination': '<(PRODUCT_DIR)', 30 'destination': '<(PRODUCT_DIR)',
31 'files': [ 31 'files': [
32 '../../../runtime/embedders/openglui/common/gl.dart', 32 '../../../runtime/embedders/openglui/common/gl.dart',
33 '../src/openglui_raytrace.dart', 33 '../src/openglui_raytrace.dart',
34 '../src/openglui_canvas_tests.dart' 34 '../src/openglui_canvas_tests.dart'
35 '../src/flashingbox.dart'
36 '../src/blasteroids.dart'
35 ], 37 ],
36 }], 38 }],
37 }, 39 },
38 { 40 {
39 'target_name': 'decode_png', 41 'target_name': 'decode_png',
40 'type': 'none', 42 'type': 'none',
41 'actions': [ 43 'actions': [
42 { 44 {
43 'action_name': 'decode', 45 'action_name': 'decode',
44 'inputs': [ 46 'inputs': [
(...skipping 16 matching lines...) Expand all
61 'include_dirs': [ 63 'include_dirs': [
62 '../../../runtime', 64 '../../../runtime',
63 '/usr/X11/include', 65 '/usr/X11/include',
64 ], 66 ],
65 'sources': [ 67 'sources': [
66 'mobile_emulator_sample.cc', 68 'mobile_emulator_sample.cc',
67 ], 69 ],
68 'conditions': [ 70 'conditions': [
69 ['OS=="linux"', 71 ['OS=="linux"',
70 { 72 {
73 'cflags': [
74 '-g'
75 ],
71 'link_settings': { 76 'link_settings': {
72 'libraries': [ 77 'libraries': [
73 '-Wl,--start-group', 78 '-Wl,--start-group',
74 '-lskia_core', 79 '-lskia_core',
75 '-lskia_effects', 80 '-lskia_effects',
76 '-lskia_gr', 81 '-lskia_gr',
77 '-lskia_images', 82 '-lskia_images',
78 '-lskia_opts', 83 '-lskia_opts',
79 '-lskia_opts_ssse3', 84 '-lskia_opts_ssse3',
80 '-lskia_ports', 85 '-lskia_ports',
(...skipping 25 matching lines...) Expand all
106 '-framework GLUT', 111 '-framework GLUT',
107 '-L /usr/X11/lib' 112 '-L /usr/X11/lib'
108 ], 113 ],
109 } 114 }
110 ] 115 ]
111 ] 116 ]
112 } 117 }
113 ] 118 ]
114 } 119 }
115 120
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698