| 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' : 'file_io', | 5 'NAME' : 'file_io', |
| 6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
| 7 'SOURCES' : ['file_io.cc'], | 7 'SOURCES' : ['file_io.cc'], |
| 8 'LIBS' : ['ppapi_cpp', 'ppapi', 'pthread'] | 8 'LIBS' : ['ppapi_cpp', 'ppapi', 'pthread'] |
| 9 } | 9 } |
| 10 ], | 10 ], |
| 11 'DATA': ['example.js'], | 11 'DATA': [ |
| 12 'Makefile', |
| 13 'example.js', |
| 14 ], |
| 12 'DEST': 'examples', | 15 'DEST': 'examples', |
| 13 'NAME': 'file_io', | 16 'NAME': 'file_io', |
| 14 'TITLE': 'File I/O', | 17 'TITLE': 'File I/O', |
| 15 'DESC': """ | 18 'DESC': """ |
| 16 The File IO example demonstrates saving, loading, and deleting files | 19 The File IO example demonstrates saving, loading, and deleting files |
| 17 from the persistent file store.""", | 20 from the persistent file store.""", |
| 18 'FOCUS': 'File input and output.', | 21 'FOCUS': 'File input and output.', |
| 19 'GROUP': 'API' | 22 'GROUP': 'API' |
| 20 } | 23 } |
| 21 | 24 |
| OLD | NEW |