| 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' : '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': [ | 11 'DATA': [ |
| 12 'example.js', | 12 'example.js', |
| 13 'geturl_success.html', | 13 'geturl_success.html', |
| 14 ], | 14 ], |
| 15 'DEST': 'examples', | 15 'DEST': 'examples', |
| 16 'NAME': 'geturl', | 16 'NAME': 'geturl', |
| 17 'TITLE': 'Get URL', | 17 'TITLE': 'Get URL', |
| 18 'DESC': """ | |
| 19 The Get URL example demonstrates fetching an URL and then displaying | |
| 20 its contents. Clicking the GetURL button will cause a geturl_success.html | |
| 21 file to get loaded asynchronously, then displayed in a text box when the | |
| 22 load completes.""", | |
| 23 'FOCUS': 'URL loading.', | |
| 24 'GROUP': 'API' | 18 'GROUP': 'API' |
| 25 } | 19 } |
| 26 | 20 |
| OLD | NEW |