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

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

Issue 11725003: Update make for hello examples (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'linux'],
3 'SEARCH': [ 3 'SEARCH': [
4 '.', 4 '.',
5 '..', 5 '..',
6 '../../tools', 6 '../../tools',
7 ], 7 ],
8 'TARGETS': [ 8 'TARGETS': [
9 { 9 {
10 'NAME' : 'hello_world_stdio', 10 'NAME' : 'hello_world_stdio',
11 'TYPE' : 'main', 11 'TYPE' : 'main',
12 'SOURCES' : ['hello_world.c'], 12 'SOURCES' : ['hello_world.c'],
(...skipping 13 matching lines...) Expand all
26 The Hello World Stdio example is the simplest one in the SDK. It uses the 26 The Hello World Stdio example is the simplest one in the SDK. It uses the
27 ppapi_main library which creates an Module and Instance, using default values 27 ppapi_main library which creates an Module and Instance, using default values
28 to simplify setup and communication with the PPAPI system. In addition, it 28 to simplify setup and communication with the PPAPI system. In addition, it
29 uses the nacl_mounts library to remap IO to the Pepper API. This 29 uses the nacl_mounts library to remap IO to the Pepper API. This
30 simplifies IO by providing a standard blocking API and allowing STDERR to go to 30 simplifies IO by providing a standard blocking API and allowing STDERR to go to
31 the JavaScript console by default.""", 31 the JavaScript console by default.""",
32 'FOCUS': 'Basic HTML, JavaScript, Minimal App.', 32 'FOCUS': 'Basic HTML, JavaScript, Minimal App.',
33 'GROUP': 'Tools' 33 'GROUP': 'Tools'
34 } 34 }
35 35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698