OLD | NEW |
1 { | 1 { |
2 'TOOLS': ['newlib', 'pnacl'], | 2 'TOOLS': ['newlib', 'pnacl'], |
3 'TARGETS': [ | 3 'TARGETS': [ |
4 { | 4 { |
5 'NAME' : 'fullscreen_tumbler', | 5 'NAME': 'fullscreen_tumbler', |
6 'TYPE' : 'main', | 6 'TYPE': 'main', |
7 'SOURCES' : [ | 7 'SOURCES': [ |
8 'callback.h', | 8 'callback.h', |
9 'cube.cc', | 9 'cube.cc', |
10 'cube.h', | 10 'cube.h', |
11 'opengl_context.cc', | 11 'opengl_context.cc', |
12 'opengl_context.h', | 12 'opengl_context.h', |
13 'opengl_context_ptrs.h', | 13 'opengl_context_ptrs.h', |
14 'scripting_bridge.cc', | 14 'scripting_bridge.cc', |
15 'scripting_bridge.h', | 15 'scripting_bridge.h', |
16 'shader_util.cc', | 16 'shader_util.cc', |
17 'shader_util.h', | 17 'shader_util.h', |
18 'transforms.cc', | 18 'transforms.cc', |
19 'transforms.h', | 19 'transforms.h', |
20 'tumbler.cc', | 20 'tumbler.cc', |
21 'tumbler.h', | 21 'tumbler.h', |
22 'tumbler_module.cc' | 22 'tumbler_module.cc' |
23 ], | 23 ], |
24 'LIBS': ['ppapi_cpp', 'ppapi_gles2'] | 24 'LIBS': ['ppapi_gles2', 'ppapi_cpp', 'ppapi', 'pthread'] |
25 } | 25 } |
26 ], | 26 ], |
27 'DATA': [ | 27 'DATA': [ |
28 'bind.js', | 28 'bind.js', |
29 'check_browser.js', | 29 'check_browser.js', |
30 'dragger.js', | 30 'dragger.js', |
31 'trackball.js', | 31 'trackball.js', |
32 'tumbler.js', | 32 'tumbler.js', |
33 'vector3.js' | 33 'vector3.js' |
34 ], | 34 ], |
35 'DEST': 'examples', | 35 'DEST': 'examples', |
36 'NAME': 'fullscreen_tumbler', | 36 'NAME': 'fullscreen_tumbler', |
37 'TITLE': 'Interactive Cube Example', | 37 'TITLE': 'Interactive Cube Example', |
38 'DESC': """ | 38 'DESC': """ |
39 This is a modified version of the Tumbler example above that supports | 39 This is a modified version of the Tumbler example above that supports |
40 full-screen display. It is in every way identical to Tumbler in | 40 full-screen display. It is in every way identical to Tumbler in |
41 functionality, except that it adds the ability to switch to/from | 41 functionality, except that it adds the ability to switch to/from |
42 full-screen display by pressing the Enter key. | 42 full-screen display by pressing the Enter key. |
43 """, | 43 """, |
44 'INFO': 'Teaching focus: Full-screen.' | 44 'INFO': 'Teaching focus: Full-screen.' |
45 } | 45 } |
46 | 46 |
OLD | NEW |