OLD | NEW |
---|---|
1 { | 1 { |
2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl'], |
binji
2012/07/23 18:47:14
Is this broken on win host?
noelallen1
2012/07/23 21:44:54
Yeah, for stuff not checked yet.
On 2012/07/23 18
| |
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'] | 8 'LIBS' : ['ppapi_cpp', 'ppapi', 'pthread'] |
9 } | 9 } |
10 ], | 10 ], |
11 'DEST': 'examples', | 11 'DEST': 'examples', |
12 'NAME': 'file_io', | 12 'NAME': 'file_io', |
13 'TITLE': 'File I/O', | 13 'TITLE': 'File I/O', |
14 'DESC': """ | 14 'DESC': """ |
15 The File IO example demonstrates saving, loading, and deleting files | 15 The File IO example demonstrates saving, loading, and deleting files |
16 from the persistent file store.""", | 16 from the persistent file store.""", |
17 'INFO': 'Teaching focus: File input and output.' | 17 'INFO': 'Teaching focus: File input and output.' |
18 } | 18 } |
19 | 19 |
OLD | NEW |