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

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

Issue 11882012: Convert all project to use common.mk (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix missing common.mk path 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', 'glibc', 'pnacl', 'win', 'linux'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'],
3 'SEARCH': [
4 '.',
5 '..',
6 '../../tools',
7 ],
3 'TARGETS': [ 8 'TARGETS': [
4 { 9 {
5 'NAME' : 'load_progress', 10 'NAME' : 'load_progress',
6 'TYPE' : 'main', 11 'TYPE' : 'main',
7 'SOURCES' : ['load_progress.cc'], 12 'SOURCES' : ['load_progress.cc'],
8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] 13 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread']
9 } 14 }
10 ], 15 ],
11 'DATA': ['check_browser.js', 'example.js'], 16 'DATA': [
17 'Makefile',
18 'example.js',
19 ],
12 'DEST': 'examples', 20 'DEST': 'examples',
13 'NAME': 'load_progress', 21 'NAME': 'load_progress',
14 'TITLE': 'Load Progress', 22 'TITLE': 'Load Progress',
15 'DESC': """ 23 'DESC': """
16 The Load Progress example demonstrates how to listen for and handle 24 The Load Progress example demonstrates how to listen for and handle
17 events that occur while a NaCl module loads. This example listens for 25 events that occur while a NaCl module loads. This example listens for
18 different load event types and dispatches different events to their 26 different load event types and dispatches different events to their
19 respective handler. This example also checks for valid browser version and 27 respective handler. This example also checks for valid browser version and
20 shows how to calculate and display loading progress.""", 28 shows how to calculate and display loading progress.""",
21 'FOCUS': 'Progress event handling.', 29 'FOCUS': 'Progress event handling.',
22 'GROUP': 'Concepts' 30 'GROUP': 'Concepts'
23 } 31 }
24 32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698