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