| 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_histogram', | 5 'NAME' : 'file_histogram', |
| 6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
| 7 'SOURCES' : ['file_histogram.cc'], | 7 'SOURCES' : ['file_histogram.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_histogram', | 16 'NAME': 'file_histogram', |
| 14 'TITLE': 'File Histogram.', | 17 'TITLE': 'File Histogram.', |
| 15 'DESC': """ | 18 'DESC': """ |
| 16 The File Histogram example demonstrates prompting the user for a file, | 19 The File Histogram example demonstrates prompting the user for a file, |
| 17 passing the file contents to NativeClient as a VarArrayBuffer, then drawing a | 20 passing the file contents to NativeClient as a VarArrayBuffer, then drawing a |
| 18 histogram representing the contents of the file to a 2D square. | 21 histogram representing the contents of the file to a 2D square. |
| 19 """, | 22 """, |
| 20 'FOCUS': 'VarArrayBuffer, 2D, File input.', | 23 'FOCUS': 'VarArrayBuffer, 2D, File input.', |
| 21 'GROUP': 'API' | 24 'GROUP': 'API' |
| 22 } | 25 } |
| 23 | 26 |
| OLD | NEW |