Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 'TOOLS': ['newlib'], | 2 'TOOLS': ['newlib'], |
| 3 'SEARCH': [ | |
| 4 '.', | |
| 5 '..', | |
| 6 '../../tools', | |
| 7 ], | |
| 3 'TARGETS': [ | 8 'TARGETS': [ |
| 4 { | 9 { |
| 5 'NAME' : 'debugging', | 10 'NAME' : 'debugging', |
| 6 'TYPE' : 'main', | 11 'TYPE' : 'main', |
| 7 'SOURCES' : [ | 12 'SOURCES' : [ |
| 8 'hello_world.c', | 13 'hello_world.c', |
| 9 'string_stream.c', | 14 'string_stream.c', |
| 10 'string_stream.h', | 15 'string_stream.h', |
| 11 'untrusted_crash_dump.c', | 16 'untrusted_crash_dump.c', |
| 12 'untrusted_crash_dump.h' | 17 'untrusted_crash_dump.h' |
| 13 ], | 18 ], |
| 14 'CCFLAGS': ['-fno-omit-frame-pointer'], | 19 'CCFLAGS': ['-fno-omit-frame-pointer'], |
| 15 'LIBS' : ['ppapi', 'pthread'] | 20 'LIBS' : ['ppapi', 'pthread'] |
| 16 } | 21 } |
| 17 ], | 22 ], |
| 18 | 23 |
| 19 # The debugging example needs to use a different HTTP server to handle POST | 24 # The debugging example needs to use a different HTTP server to handle POST |
| 20 # messages from the NaCl module. | 25 # messages from the NaCl module. |
| 21 'PRE': """ | 26 'PRE': """ |
| 22 CHROME_ARGS+=--no-sandbox | 27 CHROME_ARGS+=--no-sandbox |
| 23 CHROME_ENV:=NACL_DANGEROUS_ENABLE_FILE_ACCESS=1 | 28 CHROME_ENV:=NACL_DANGEROUS_ENABLE_FILE_ACCESS=1 |
| 24 CHROME_ENV+=NACL_SECURITY_DISABLE=1 | 29 CHROME_ENV+=NACL_SECURITY_DISABLE=1 |
| 25 CHROME_ENV+=NACL_UNTRUSTED_EXCEPTION_HANDLING=1 | 30 CHROME_ENV+=NACL_UNTRUSTED_EXCEPTION_HANDLING=1 |
| 26 """, | 31 """, |
| 27 | 32 |
| 28 'DATA': ['handler.py', 'example.js'], | 33 'DATA': [ |
| 34 'Makefile', | |
| 35 'example.js', | |
| 36 » 'handler.py' | |
|
binji
2013/01/16 22:46:55
nit: remove tab
noelallen1
2013/01/16 23:21:10
Done.
| |
| 37 ], | |
| 29 'DEST': 'examples', | 38 'DEST': 'examples', |
| 30 'NAME': 'debugging', | 39 'NAME': 'debugging', |
| 31 'TITLE': 'Debugging', | 40 'TITLE': 'Debugging', |
| 32 'DESC': """ | 41 'DESC': """ |
| 33 Debugging example shows how to use developer only features to enable | 42 Debugging example shows how to use developer only features to enable |
| 34 catching an exception, and then using that to create a stacktrace.""", | 43 catching an exception, and then using that to create a stacktrace.""", |
| 35 'FOCUS': 'Debugging, Stacktraces.', | 44 'FOCUS': 'Debugging, Stacktraces.', |
| 36 'GROUP': 'Concepts' | 45 'GROUP': 'Concepts' |
| 37 } | 46 } |
| 38 | 47 |
| OLD | NEW |