| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], |
| 3 'SEARCH': [ |
| 4 '.', |
| 5 '..', |
| 6 '../../tools', |
| 7 ], |
| 3 'TARGETS': [ | 8 'TARGETS': [ |
| 4 { | 9 { |
| 5 'NAME' : 'file_histogram', | 10 'NAME' : 'file_histogram', |
| 6 'TYPE' : 'main', | 11 'TYPE' : 'main', |
| 7 'SOURCES' : ['file_histogram.cc'], | 12 'SOURCES' : ['file_histogram.cc'], |
| 8 'LIBS' : ['ppapi_cpp', 'ppapi', 'pthread'] | 13 'LIBS' : ['ppapi_cpp', 'ppapi', 'pthread'] |
| 9 } | 14 } |
| 10 ], | 15 ], |
| 11 'DATA': ['example.js'], | 16 'DATA': [ |
| 17 'Makefile', |
| 18 'example.js', |
| 19 ], |
| 12 'DEST': 'examples', | 20 'DEST': 'examples', |
| 13 'NAME': 'file_histogram', | 21 'NAME': 'file_histogram', |
| 14 'TITLE': 'File Histogram.', | 22 'TITLE': 'File Histogram.', |
| 15 'DESC': """ | 23 'DESC': """ |
| 16 The File Histogram example demonstrates prompting the user for a file, | 24 The File Histogram example demonstrates prompting the user for a file, |
| 17 passing the file contents to NativeClient as a VarArrayBuffer, then drawing a | 25 passing the file contents to NativeClient as a VarArrayBuffer, then drawing a |
| 18 histogram representing the contents of the file to a 2D square. | 26 histogram representing the contents of the file to a 2D square. |
| 19 """, | 27 """, |
| 20 'FOCUS': 'VarArrayBuffer, 2D, File input.', | 28 'FOCUS': 'VarArrayBuffer, 2D, File input.', |
| 21 'GROUP': 'API' | 29 'GROUP': 'API' |
| 22 } | 30 } |
| 23 | 31 |
| OLD | NEW |