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

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

Issue 1388503003: [NaCl SDK] Remove newlib toolchain from the SDK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
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': ['clang-newlib'],
4 'TARGETS': [ 4 'TARGETS': [
5 { 5 {
6 'NAME' : 'debugging', 6 'NAME' : 'debugging',
7 'TYPE' : 'main', 7 'TYPE' : 'main',
8 'SOURCES' : [ 8 'SOURCES' : [
9 'debugging.c', 9 'debugging.c',
10 ], 10 ],
11 'CFLAGS': ['-fno-omit-frame-pointer'], 11 'CFLAGS': ['-fno-omit-frame-pointer'],
12 'DEPS' : ['error_handling'], 12 'DEPS' : ['error_handling'],
13 'LIBS' : ['error_handling', 'ppapi', 'pthread'] 13 'LIBS' : ['error_handling', 'ppapi', 'pthread']
14 } 14 }
15 ], 15 ],
16 'DATA': [ 16 'DATA': [
17 'example.js', 17 'example.js',
18 ], 18 ],
19 'DEST': 'examples/tutorial', 19 'DEST': 'examples/tutorial',
20 'NAME': 'debugging', 20 'NAME': 'debugging',
21 'TITLE': 'Debugging', 21 'TITLE': 'Debugging',
22 'GROUP': 'Tutorial' 22 'GROUP': 'Tutorial'
23 } 23 }
24 24
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698