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

Side by Side Diff: native_client_sdk/src/examples/load_progress/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: more fixes, moved resources out of build_tools directory 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' : 'load_progress', 5 'NAME' : 'load_progress',
6 'TYPE' : 'main', 6 'TYPE' : 'main',
7 'SOURCES' : ['load_progress.cc'], 7 'SOURCES' : ['load_progress.cc'],
8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] 8 'LIBS': ['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': 'load_progress', 15 'NAME': 'load_progress',
16 'TITLE': 'Load Progress', 16 'TITLE': 'Load Progress',
17 'DESC': """
18 The Load Progress example demonstrates how to listen for and handle
19 events that occur while a NaCl module loads. This example listens for
20 different load event types and dispatches different events to their
21 respective handler. This example also checks for valid browser version and
22 shows how to calculate and display loading progress.""",
23 'FOCUS': 'Progress event handling.',
24 'GROUP': 'Concepts' 17 'GROUP': 'Concepts'
25 } 18 }
26 19
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698