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

Side by Side Diff: runtime/embedders/openglui/emulator/emulator_embedder.gypi

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
OLDNEW
(Empty)
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
3 # BSD-style license that can be found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'emulator_embedder',
9 'type': 'shared_library',
10 'dependencies': [
11 'libdart_lib_withcore',
12 'libdart_vm',
13 'libjscre',
14 'libdouble_conversion',
15 'generate_version_cc_file',
16 ],
17 'include_dirs': [
18 '../../..',
19 ],
20 'defines': [
21 'DART_SHARED_LIB'
22 ],
23 'sources': [
24 '../../../include/dart_api.h',
25 '../../../include/dart_debugger_api.h',
26 '../../../vm/dart_api_impl.cc',
27 '../../../vm/debugger_api_impl.cc',
28 '../../../vm/version.h',
29 '../common/context.h',
30 '../common/dart_host.cc',
31 '../common/dart_host.h',
32 '../common/events.h',
33 '../common/extension.cc',
34 '../common/extension.h',
35 '../common/gl_graphics_handler.cc',
36 '../common/gl_graphics_handler.h',
37 '../common/graphics_handler.h',
38 '../common/input_handler.cc',
39 '../common/input_handler.h',
40 '../common/isized.h',
41 '../common/life_cycle_handler.h',
42 '../common/log.h',
43 '../common/opengl.h',
44 ',,.common/resource.h',
45 '../common/sample.h',
46 '../common/sound_handler.cc',
47 '../common/sound_handler.h',
48 '../common/timer.cc',
49 '../common/timer.h',
50 '../common/types.h',
51 '../common/vm_glue.cc',
52 '../common/vm_glue.h',
53 'emulator_embedder.cc',
54 'emulator_embedder.h',
55 'emulator_graphics_handler.cc',
56 'emulator_graphics_handler.h',
57 'emulator_resource.h',
58 '<(version_cc_file)',
59 ],
60 'conditions': [
61 ['OS=="mac"', {
62 'xcode_settings' : {
63 'OTHER_LDFLAGS': [ '-framework OpenGL', '-framework GLUT', '-L /usr/ X11/lib' ]
64 },
65 }],
66 ]
67 },
68 ],
69 }
70
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698