| 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' : 'websocket', | 10 'NAME' : 'websocket', |
| 6 'TYPE' : 'main', | 11 'TYPE' : 'main', |
| 7 'SOURCES' : ['websocket.cc'], | 12 'SOURCES' : ['websocket.cc'], |
| 8 'LIBS': ['ppapi_cpp', 'ppapi'] | 13 'LIBS': ['ppapi_cpp', 'ppapi'] |
| 9 } | 14 } |
| 10 ], | 15 ], |
| 11 'DATA': ['example.js'], | 16 'DATA': [ |
| 17 'Makefile', |
| 18 'example.js', |
| 19 ], |
| 12 'DEST': 'examples', | 20 'DEST': 'examples', |
| 13 'NAME': 'websocket', | 21 'NAME': 'websocket', |
| 14 'TITLE': 'Websocket', | 22 'TITLE': 'Websocket', |
| 15 'DESC': """ | 23 'DESC': """ |
| 16 The Websocket example demonstrates how to use the Websocket API. The | 24 The Websocket example demonstrates how to use the Websocket API. The |
| 17 user first connects to the test server: ws://html5rocks.websocket.org/echo by | 25 user first connects to the test server: ws://html5rocks.websocket.org/echo by |
| 18 clicking on the 'Connect'' button. Then hitting Send' will cause the app to | 26 clicking on the 'Connect'' button. Then hitting Send' will cause the app to |
| 19 send the message to the server and retrieve the reply.""", | 27 send the message to the server and retrieve the reply.""", |
| 20 'FOCUS': 'Websockets', | 28 'FOCUS': 'Websockets', |
| 21 'GROUP': 'API' | 29 'GROUP': 'API' |
| 22 } | 30 } |
| 23 | 31 |
| OLD | NEW |