| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], |
| 3 'TARGETS': [ | 3 'TARGETS': [ |
| 4 { | 4 { |
| 5 'NAME' : 'websocket', | 5 'NAME' : 'websocket', |
| 6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
| 7 'SOURCES' : ['websocket.cc'], | 7 'SOURCES' : ['websocket.cc'], |
| 8 'LIBS': ['ppapi_cpp'] | 8 'LIBS': ['ppapi_cpp', 'ppapi'] |
| 9 } | 9 } |
| 10 ], | 10 ], |
| 11 'DEST': 'examples', | 11 'DEST': 'examples', |
| 12 'NAME': 'websocket', | 12 'NAME': 'websocket', |
| 13 'TITLE': 'Websocket', | 13 'TITLE': 'Websocket', |
| 14 'DESC': """ | 14 'DESC': """ |
| 15 The Websocket example demonstrates how to use the Websocket API. The | 15 The Websocket example demonstrates how to use the Websocket API. The |
| 16 user first connects to the test server: ws://html5rocks.websocket.org/echo by | 16 user first connects to the test server: ws://html5rocks.websocket.org/echo by |
| 17 clicking on the 'Connect'' button. Then hitting Send' will cause the app to | 17 clicking on the 'Connect'' button. Then hitting Send' will cause the app to |
| 18 send the message to the server and retrieve the reply.""", | 18 send the message to the server and retrieve the reply.""", |
| 19 'INFO': 'Websockets' | 19 'INFO': 'Websockets' |
| 20 } | 20 } |
| 21 | 21 |
| OLD | NEW |