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