Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(990)

Side by Side Diff: native_client_sdk/src/examples/pi_generator/example.dsc

Issue 13488007: [NaCl SDK] Make the SDK examples buildable as a packaged app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix license headers Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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': [ 15 'DATA': [
16 'example.js', 16 'example.js',
17 ], 17 ],
18 'DEST': 'examples', 18 'DEST': 'examples',
19 'NAME': 'pi_generator', 19 'NAME': 'pi_generator',
20 'TITLE': 'Monte Carlo Estimate for Pi', 20 'TITLE': 'Monte Carlo Estimate for Pi',
21 'DESC': """
22 The Pi Generator example demonstrates creating a helper thread that
23 estimate pi using the Monte Carlo method while randomly putting 1,000,000,000
24 points inside a 2D square that shares two sides with a quarter circle.""",
25 'FOCUS': 'Thread creation, 2D graphics, view change events.',
26 'GROUP': 'Concepts' 21 'GROUP': 'Concepts'
27 } 22 }
OLDNEW
« no previous file with comments | « native_client_sdk/src/examples/mouselock/index.html ('k') | native_client_sdk/src/examples/resources/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698