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