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

Side by Side Diff: native_client_sdk/src/examples/tutorial/debugging/example.dsc

Issue 14607005: [NaCl SDK] Cleanup examples. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: feedback Created 7 years, 7 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 'DISABLE_PACKAGE': True, # Doesn't work in packaged apps yet. 2 'DISABLE_PACKAGE': True, # Doesn't work in packaged apps yet.
3 'TOOLS': ['newlib'], 3 'TOOLS': ['newlib'],
4 'SEARCH': [ 4 'SEARCH': [
5 '.', 5 '.',
6 '../..', 6 '../..',
7 ], 7 ],
8 'TARGETS': [ 8 'TARGETS': [
9 { 9 {
10 'NAME' : 'debugging', 10 'NAME' : 'debugging',
11 'TYPE' : 'main', 11 'TYPE' : 'main',
12 'SOURCES' : [ 12 'SOURCES' : [
13 'hello_world.c', 13 'debugging.c',
14 ], 14 ],
15 'CCFLAGS': ['-fno-omit-frame-pointer'], 15 'CCFLAGS': ['-fno-omit-frame-pointer'],
16 'DEPS' : ['error_handling'], 16 'DEPS' : ['error_handling'],
17 'LIBS' : ['ppapi', 'pthread'] 17 'LIBS' : ['ppapi', 'pthread']
18 } 18 }
19 ], 19 ],
20 20
21 'POST': """ 21 'POST': """
22 # 22 #
23 # Specify the MAP files to be created. 23 # Specify the MAP files to be created.
24 # 24 #
25 $(eval $(call MAP_RULE,$(TARGET),$(TARGET))) 25 $(eval $(call MAP_RULE,$(TARGET),$(TARGET)))
26 """, 26 """,
27 'DATA': [ 27 'DATA': [
28 'example.js', 28 'example.js',
29 ], 29 ],
30 'DEST': 'examples/tutorial', 30 'DEST': 'examples/tutorial',
31 'NAME': 'debugging', 31 'NAME': 'debugging',
32 'TITLE': 'Debugging', 32 'TITLE': 'Debugging',
33 'GROUP': 'Tutorial' 33 'GROUP': 'Tutorial'
34 } 34 }
35 35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698