Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], |
| 3 'TARGETS': [ | 3 'TARGETS': [ |
| 4 { | 4 { |
| 5 'NAME' : 'nacl_io', | 5 'NAME' : 'nacl_io', |
| 6 'TYPE' : 'main', | 6 'TYPE' : 'main', |
| 7 'SOURCES' : [ | 7 'SOURCES' : [ |
| 8 'handlers.c', | 8 'handlers.c', |
| 9 'handlers.h', | 9 'handlers.h', |
| 10 'hello_nacl_io.c', | 10 'nacl_io.c', |
| 11 'hello_nacl_io.h', | 11 'nacl_io.h', |
|
noelallen1
2013/05/07 19:07:29
This collides with both the lib name and the lib s
binji
2013/05/07 20:37:35
Done.
| |
| 12 'queue.c', | 12 'queue.c', |
| 13 'queue.h', | 13 'queue.h', |
| 14 ], | 14 ], |
| 15 'LIBS': ['ppapi', 'pthread', 'nacl_io'] | 15 'LIBS': ['ppapi', 'pthread', 'nacl_io'] |
|
noelallen1
2013/05/07 19:07:29
Should this be:
nacl_io, ppapi, pthread?
binji
2013/05/07 20:37:35
Done.
| |
| 16 } | 16 } |
| 17 ], | 17 ], |
| 18 'DATA': [ | 18 'DATA': [ |
| 19 'example.js' | 19 'example.js' |
| 20 ], | 20 ], |
| 21 'DEST': 'examples/demo', | 21 'DEST': 'examples/demo', |
| 22 'NAME': 'nacl_io', | 22 'NAME': 'nacl_io', |
| 23 'TITLE': 'Nacl IO Demo', | 23 'TITLE': 'Nacl IO Demo', |
| 24 'GROUP': 'Demo' | 24 'GROUP': 'Demo' |
| 25 } | 25 } |
| OLD | NEW |