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