OLD | NEW |
1 { | 1 { |
2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], |
3 'TARGETS': [ | 3 'TARGETS': [ |
4 { | 4 { |
5 'NAME' : 'graphics_3d', | 5 'NAME' : 'graphics_3d', |
6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
7 'SOURCES' : ['graphics_3d.cc', 'matrix.cc', 'matrix.h'], | 7 'SOURCES' : [ |
8 'CXXFLAGS': [ | 8 'graphics_3d.cc', |
9 '-I../../src', | 9 'matrix.cc', |
10 '-I../../src/ppapi/lib/gl' | 10 'matrix.h', |
| 11 'texture.cc', |
11 ], | 12 ], |
12 'LIBS': ['ppapi_gles2', 'ppapi', 'pthread'] | 13 'LIBS': ['ppapi_gles2', 'ppapi_cpp', 'ppapi', 'pthread'] |
13 } | 14 } |
14 ], | 15 ], |
15 'DATA': [ | 16 'DATA': [ |
16 'fragment_shader_es2.frag', | 17 'example.js' |
17 'hello.raw', | |
18 'vertex_shader_es2.vert' | |
19 ], | 18 ], |
20 'DEST': 'examples/api', | 19 'DEST': 'examples/api', |
21 'NAME': 'graphics_3d', | 20 'NAME': 'graphics_3d', |
22 'TITLE': 'Graphics 3D', | 21 'TITLE': 'Graphics 3D', |
23 'GROUP': 'API' | 22 'GROUP': 'API' |
24 } | 23 } |
25 | 24 |
26 | 25 |
27 | 26 |
OLD | NEW |