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

Side by Side Diff: native_client_sdk/src/examples/input_events/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', 'pnacl', 'linux', 'win'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'linux', 'win'],
3 'TARGETS': [ 3 'TARGETS': [
4 { 4 {
5 'NAME' : 'input_events', 5 'NAME' : 'input_events',
6 'TYPE' : 'main', 6 'TYPE' : 'main',
7 'SOURCES' : [ 7 'SOURCES' : [
8 'custom_events.cc', 8 'custom_events.cc',
9 'custom_events.h', 9 'custom_events.h',
10 'input_events.cc', 10 'input_events.cc',
11 'shared_queue.h', 11 'shared_queue.h',
12 ], 12 ],
13 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] 13 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread']
14 } 14 }
15 ], 15 ],
16 'DATA': [ 16 'DATA': [
17 'example.js', 17 'example.js',
18 ], 18 ],
19 'DEST': 'examples', 19 'DEST': 'examples',
20 'NAME': 'input_events', 20 'NAME': 'input_events',
21 'TITLE': 'Input Events', 21 'TITLE': 'Input Events',
22 'DESC': """The Input Events example shows how to handle input events in a
23 multi-threaded application. The main thread converts input events to
24 non-pepper events and puts them on a queue. The worker thread pulls them off of
25 the queue, converts them to a string, and then uses CallOnMainThread so that
26 PostMessage can be send the result of the worker thread to the browser.""",
27 'FOCUS': """Multi-threading, keyboard and mouse input, view change, and focus
28 events.""",
29 'GROUP': 'API', 22 'GROUP': 'API',
30 } 23 }
31 24
OLDNEW
« no previous file with comments | « native_client_sdk/src/examples/input_events/custom_events.cc ('k') | native_client_sdk/src/examples/input_events/example.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698