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

Side by Side Diff: native_client_sdk/src/examples/file_io/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', 'win'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl'],
binji 2012/07/23 18:47:14 Is this broken on win host?
noelallen1 2012/07/23 21:44:54 Yeah, for stuff not checked yet. On 2012/07/23 18
3 'TARGETS': [ 3 'TARGETS': [
4 { 4 {
5 'NAME' : 'file_io', 5 'NAME' : 'file_io',
6 'TYPE' : 'main', 6 'TYPE' : 'main',
7 'SOURCES' : ['file_io.cc'], 7 'SOURCES' : ['file_io.cc'],
8 'LIBS': ['ppapi_cpp'] 8 'LIBS' : ['ppapi_cpp', 'ppapi', 'pthread']
9 } 9 }
10 ], 10 ],
11 'DEST': 'examples', 11 'DEST': 'examples',
12 'NAME': 'file_io', 12 'NAME': 'file_io',
13 'TITLE': 'File I/O', 13 'TITLE': 'File I/O',
14 'DESC': """ 14 'DESC': """
15 The File IO example demonstrates saving, loading, and deleting files 15 The File IO example demonstrates saving, loading, and deleting files
16 from the persistent file store.""", 16 from the persistent file store.""",
17 'INFO': 'Teaching focus: File input and output.' 17 'INFO': 'Teaching focus: File input and output.'
18 } 18 }
19 19
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698