| OLD | NEW |
| (Empty) |
| 1 { | |
| 2 'DISABLE': True, | |
| 3 'TOOLS': ['newlib', 'glibc', 'pnacl'], | |
| 4 'TARGETS': [ | |
| 5 { | |
| 6 'NAME' : 'hello_world_instance3d', | |
| 7 'TYPE' : 'main', | |
| 8 'SOURCES' : ['hello_world.cc', 'matrix.cc', 'matrix.h'], | |
| 9 'CXXFLAGS': [ | |
| 10 '-I../../src', | |
| 11 '-I../../src/ppapi/lib/gl' | |
| 12 ], | |
| 13 'DEPS': ['ppapi_main', 'nacl_io'], | |
| 14 'LIBS': ['ppapi_gles2', 'ppapi_cpp', 'ppapi', | |
| 15 'pthread'] | |
| 16 } | |
| 17 ], | |
| 18 'DATA': [ | |
| 19 'fragment_shader_es2.frag', | |
| 20 'hello.raw', | |
| 21 'vertex_shader_es2.vert' | |
| 22 ], | |
| 23 'DEST': 'examples', | |
| 24 'NAME': 'hello_world_instance3d', | |
| 25 'TITLE': 'Hello World GLES 2.0 using ppapi_instance3d', | |
| 26 'GROUP': 'API' | |
| 27 } | |
| OLD | NEW |