OLD | NEW |
1 { | 1 { |
2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], | 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 'DEST': 'examples', | 11 'DEST': 'examples', |
12 'NAME': 'file_histogram', | 12 'NAME': 'file_histogram', |
13 'TITLE': 'File Histogram.', | 13 'TITLE': 'File Histogram.', |
14 'DESC': """ | 14 'DESC': """ |
15 The File Histogram example demonstrates prompting the user for a file, | 15 The File Histogram example demonstrates prompting the user for a file, |
16 passing the file contents to NativeClient as a VarArrayBuffer, then drawing a | 16 passing the file contents to NativeClient as a VarArrayBuffer, then drawing a |
17 histogram representing the contents of the file to a 2D square. | 17 histogram representing the contents of the file to a 2D square. |
18 """, | 18 """, |
19 'INFO': 'Teaching focus: VarArrayBuffer, 2D, File input.' | 19 'INFO': 'Teaching focus: VarArrayBuffer, 2D, File input.' |
20 } | 20 } |
21 | 21 |
OLD | NEW |