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

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

Issue 10855162: add linux support for examples and libs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'],
3 'TARGETS': [ 3 'TARGETS': [
4 { 4 {
5 'NAME' : 'input_events', 5 'NAME' : 'input_events',
6 'TYPE' : 'main', 6 'TYPE' : 'main',
7 'SOURCES' : ['input_events.cc'], 7 'SOURCES' : ['input_events.cc'],
8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] 8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread']
9 } 9 }
10 ], 10 ],
11 'DEST': 'examples', 11 'DEST': 'examples',
12 'NAME': 'input_events', 12 'NAME': 'input_events',
13 'TITLE': 'Input Events', 13 'TITLE': 'Input Events',
14 'DESC': """ 14 'DESC': """
15 The Input Events example demonstrates how to handle events triggered by 15 The Input Events example demonstrates how to handle events triggered by
16 the user. This example allows a user to interact with a square representing a 16 the user. This example allows a user to interact with a square representing a
17 module instance. Events are displayed on the screen as the user clicks, 17 module instance. Events are displayed on the screen as the user clicks,
18 scrolls, types, inside or outside of the square.""", 18 scrolls, types, inside or outside of the square.""",
19 'INFO': 'Keyboard and mouse input, view change, and focus events.' 19 'INFO': 'Keyboard and mouse input, view change, and focus events.'
20 } 20 }
21 21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698