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

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

Issue 10815039: Make use of -lppapi explicit to allow for correct library order. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 5 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'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl'],
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'] 12 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread']
13 } 13 }
14 ], 14 ],
15 'DEST': 'examples', 15 'DEST': 'examples',
16 'NAME': 'pi_generator', 16 'NAME': 'pi_generator',
17 'TITLE': 'Monte Carlo Estimate for Pi', 17 'TITLE': 'Monte Carlo Estimate for Pi',
18 'DESC': """ 18 'DESC': """
19 The Pi Generator example demonstrates creating a helper thread that 19 The Pi Generator example demonstrates creating a helper thread that
20 estimate pi using the Monte Carlo method while randomly putting 1,000,000,000 20 estimate pi using the Monte Carlo method while randomly putting 1,000,000,000
21 points inside a 2D square that shares two sides with a quarter circle.""", 21 points inside a 2D square that shares two sides with a quarter circle.""",
22 'INFO': 'Thread creation, 2D graphics, view change events.' 22 'INFO': 'Thread creation, 2D graphics, view change events.'
23 } 23 }
24 24
OLDNEW
« no previous file with comments | « native_client_sdk/src/examples/multithreaded_input_events/example.dsc ('k') | native_client_sdk/src/examples/pong/example.dsc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698