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

Side by Side Diff: native_client_sdk/src/examples/mouselock/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' : 'mouselock', 10 'NAME' : 'mouselock',
6 'TYPE' : 'main', 11 'TYPE' : 'main',
7 'SOURCES' : ['mouselock.cc', 'mouselock.h'], 12 'SOURCES' : ['mouselock.cc', 'mouselock.h'],
8 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread'] 13 'LIBS': ['ppapi_cpp', 'ppapi', 'pthread']
9 } 14 }
10 ], 15 ],
11 'DATA': ['check_browser.js'], 16 'DATA': [
17 'Makefile',
18 ],
12 'DEST': 'examples', 19 'DEST': 'examples',
13 'NAME': 'mouselock', 20 'NAME': 'mouselock',
14 'TITLE': 'Mouse Lock', 21 'TITLE': 'Mouse Lock',
15 'DESC': """ 22 'DESC': """
16 The Mouselock example demonstrates how to use the MouseLock API to hide 23 The Mouselock example demonstrates how to use the MouseLock API to hide
17 the mouse cursor. Mouse lock is only available in full-screen mode. You can 24 the mouse cursor. Mouse lock is only available in full-screen mode. You can
18 lock and unlock the mouse while in full-screen mode by pressing the Enter key. 25 lock and unlock the mouse while in full-screen mode by pressing the Enter key.
19 """, 26 """,
20 'FOCUS': 'Mouse lock, Full-screen.', 27 'FOCUS': 'Mouse lock, Full-screen.',
21 'GROUP': 'Concepts' 28 'GROUP': 'Concepts'
22 } 29 }
23 30
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698