| 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' : 'sine_synth', | 5 'NAME' : 'sine_synth', |
| 6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
| 7 'SOURCES' : ['sine_synth.cc'], | 7 'SOURCES' : ['sine_synth.cc'], |
| 8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] | 8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] |
| 9 } | 9 } |
| 10 ], | 10 ], |
| 11 'DATA': ['example.js'], | 11 'DATA': [ |
| 12 'Makefile', |
| 13 'example.js', |
| 14 ], |
| 12 'DEST': 'examples', | 15 'DEST': 'examples', |
| 13 'NAME': 'sine_synth', | 16 'NAME': 'sine_synth', |
| 14 'TITLE': 'Sine Wave Synthesizer', | 17 'TITLE': 'Sine Wave Synthesizer', |
| 15 'DESC': """ | 18 'DESC': """ |
| 16 The Sine Wave Synthesizer example demonstrates playing sound (a sine | 19 The Sine Wave Synthesizer example demonstrates playing sound (a sine |
| 17 wave). Enter the desired frequency and hit play to start, stop to end. The | 20 wave). Enter the desired frequency and hit play to start, stop to end. The |
| 18 frequency box will display "Loading, please wait." while the module loads.""", | 21 frequency box will display "Loading, please wait." while the module loads.""", |
| 19 'FOCUS': 'Audio.', | 22 'FOCUS': 'Audio.', |
| 20 'GROUP': 'API', | 23 'GROUP': 'API', |
| 21 } | 24 } |
| 22 | 25 |
| OLD | NEW |