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

Side by Side Diff: native_client_sdk/src/examples/hello_world_stdio/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'], 2 'TOOLS': ['newlib', 'glibc'],
3 'TARGETS': [ 3 'TARGETS': [
4 { 4 {
5 'NAME' : 'hello_world_stdio', 5 'NAME' : 'hello_world_stdio',
6 'TYPE' : 'main', 6 'TYPE' : 'main',
7 'SOURCES' : ['hello_world.c'], 7 'SOURCES' : ['hello_world.c'],
8 'LIBS': ['ppapi_main', 'nacl_io', 'ppapi_cpp', 'ppapi', 'pthread'] 8 'LIBS': ['ppapi_main', 'nacl_io', 'ppapi_cpp', 'ppapi', 'pthread']
9 } 9 }
10 ], 10 ],
11 'DATA': [ 11 'DATA': [
12 'example.js', 12 'example.js',
13 ], 13 ],
14 'DEST': 'examples', 14 'DEST': 'examples',
15 'NAME': 'hello_world_stdio', 15 'NAME': 'hello_world_stdio',
16 'TITLE': 'Hello World STDIO.', 16 'TITLE': 'Hello World STDIO.',
17 'DESC': """
18
19 The Hello World Stdio example is the simplest one in the SDK. It uses the
20 ppapi_main library which creates an Module and Instance, using default values
21 to simplify setup and communication with the PPAPI system. In addition, it
22 uses the nacl_io library to remap IO to the Pepper API. This
23 simplifies IO by providing a standard blocking API and allowing STDERR to go to
24 the JavaScript console by default.""",
25 'FOCUS': 'Basic HTML, JavaScript, Minimal App.',
26 'GROUP': 'Tools' 17 'GROUP': 'Tools'
27 } 18 }
28 19
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698