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' : 'geturl', | 5 'NAME' : 'geturl', |
6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
7 'SOURCES' : ['geturl.cc', 'geturl_handler.cc', 'geturl_handler.h'], | 7 'SOURCES' : ['geturl.cc', 'geturl_handler.cc', 'geturl_handler.h'], |
8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] | 8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] |
9 } | 9 } |
10 ], | 10 ], |
11 'DATA': ['geturl_success.html'], | 11 'DATA': ['geturl_success.html'], |
12 'DEST': 'examples', | 12 'DEST': 'examples', |
13 'NAME': 'geturl', | 13 'NAME': 'geturl', |
14 'TITLE': 'Get URL', | 14 'TITLE': 'Get URL', |
15 'DESC': """ | 15 'DESC': """ |
16 The Get URL example demonstrates fetching an URL and then displaying | 16 The Get URL example demonstrates fetching an URL and then displaying |
17 its contents. Clicking the GetURL button will cause a geturl_success.html | 17 its contents. Clicking the GetURL button will cause a geturl_success.html |
18 file to get loaded asynchronously, then displayed in a text box when the | 18 file to get loaded asynchronously, then displayed in a text box when the |
19 load completes.""", | 19 load completes.""", |
20 'INFO': 'Teaching focus: URL loading.' | 20 'INFO': 'Teaching focus: URL loading.' |
21 } | 21 } |
22 | 22 |
OLD | NEW |