| 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' : 'pi_generator', | 10 'NAME' : 'pi_generator', |
| 6 'TYPE' : 'main', | 11 'TYPE' : 'main', |
| 7 'SOURCES' : [ | 12 'SOURCES' : [ |
| 8 'pi_generator.cc', | 13 'pi_generator.cc', |
| 9 'pi_generator.h', | 14 'pi_generator.h', |
| 10 'pi_generator_module.cc' | 15 'pi_generator_module.cc' |
| 11 ], | 16 ], |
| 12 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] | 17 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] |
| 13 } | 18 } |
| 14 ], | 19 ], |
| 15 'DATA': ['example.js'], | 20 'DATA': [ |
| 21 'Makefile', |
| 22 'example.js', |
| 23 ], |
| 16 'DEST': 'examples', | 24 'DEST': 'examples', |
| 17 'NAME': 'pi_generator', | 25 'NAME': 'pi_generator', |
| 18 'TITLE': 'Monte Carlo Estimate for Pi', | 26 'TITLE': 'Monte Carlo Estimate for Pi', |
| 19 'DESC': """ | 27 'DESC': """ |
| 20 The Pi Generator example demonstrates creating a helper thread that | 28 The Pi Generator example demonstrates creating a helper thread that |
| 21 estimate pi using the Monte Carlo method while randomly putting 1,000,000,000 | 29 estimate pi using the Monte Carlo method while randomly putting 1,000,000,000 |
| 22 points inside a 2D square that shares two sides with a quarter circle.""", | 30 points inside a 2D square that shares two sides with a quarter circle.""", |
| 23 'FOCUS': 'Thread creation, 2D graphics, view change events.', | 31 'FOCUS': 'Thread creation, 2D graphics, view change events.', |
| 24 'GROUP': 'Concepts' | 32 'GROUP': 'Concepts' |
| 25 } | 33 } |
| OLD | NEW |