| 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' : 'hello_world_gles', | 5 'NAME' : 'graphics_3d', |
| 6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
| 7 'SOURCES' : ['hello_world.cc', 'matrix.cc', 'matrix.h'], | 7 'SOURCES' : ['graphics_3d.cc', 'matrix.cc', 'matrix.h'], |
| 8 'CXXFLAGS': [ | 8 'CXXFLAGS': [ |
| 9 '-I../../src', | 9 '-I../../src', |
| 10 '-I../../src/ppapi/lib/gl' | 10 '-I../../src/ppapi/lib/gl' |
| 11 ], | 11 ], |
| 12 'LIBS': ['ppapi_gles2', 'ppapi', 'pthread'] | 12 'LIBS': ['ppapi_gles2', 'ppapi', 'pthread'] |
| 13 } | 13 } |
| 14 ], | 14 ], |
| 15 'DATA': [ | 15 'DATA': [ |
| 16 'fragment_shader_es2.frag', | 16 'fragment_shader_es2.frag', |
| 17 'hello.raw', | 17 'hello.raw', |
| 18 'vertex_shader_es2.vert' | 18 'vertex_shader_es2.vert' |
| 19 ], | 19 ], |
| 20 'DEST': 'examples/api', | 20 'DEST': 'examples/api', |
| 21 'NAME': 'graphics_3d', | 21 'NAME': 'graphics_3d', |
| 22 'TITLE': 'Graphics 3D', | 22 'TITLE': 'Graphics 3D', |
| 23 'GROUP': 'API' | 23 'GROUP': 'API' |
| 24 } | 24 } |
| 25 | 25 |
| 26 | 26 |
| 27 | 27 |
| OLD | NEW |