| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl'], |
| 3 'SEL_LDR': True, | 3 'SEL_LDR': True, |
| 4 'TARGETS': [ | 4 'TARGETS': [ |
| 5 { | 5 { |
| 6 'NAME' : 'simple_hello_world', | 6 'NAME' : 'using_ppapi_simple', |
| 7 'TYPE' : 'main', | 7 'TYPE' : 'main', |
| 8 'SOURCES' : ['hello_world.c'], | 8 'SOURCES' : ['hello_world.c'], |
| 9 'DEPS': ['ppapi_simple', 'nacl_io', 'ppapi_cpp'], | 9 'DEPS': ['ppapi_simple', 'nacl_io', 'ppapi_cpp'], |
| 10 'LIBS': ['ppapi', 'pthread'] | 10 'LIBS': ['ppapi', 'pthread'] |
| 11 } | 11 } |
| 12 ], | 12 ], |
| 13 'DATA': [ | 13 'DATA': [ |
| 14 'example.js', | 14 'example.js', |
| 15 ], | 15 ], |
| 16 'DEST': 'examples/getting_started', | 16 'DEST': 'examples/tutorial', |
| 17 'NAME': 'simple_hello_world', | 17 'NAME': 'using_ppapi_simple', |
| 18 'TITLE': 'Hello World (ppapi_simple)', | 18 'TITLE': 'Using the ppapi_simple library', |
| 19 'GROUP': 'Getting Started' | 19 'GROUP': 'Tutorial' |
| 20 } | 20 } |
| 21 | |
| OLD | NEW |