Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 'TOOLS': ['bionic', 'newlib', 'glibc', 'pnacl', 'linux'], | 2 'TOOLS': ['bionic', 'newlib', 'glibc', 'pnacl', 'linux'], |
| 3 'SEARCH': [ | 3 'SEARCH': [ |
| 4 '.', | 4 '.', |
| 5 'pepper', | 5 'pepper', |
| 6 '../third_party/newlib-extras', | 6 '../third_party/newlib-extras', |
| 7 'include', | 7 'include', |
| 8 ], | 8 ], |
| 9 'TARGETS': [ | 9 'TARGETS': [ |
| 10 { | 10 { |
| 11 'DEFINES': ['NACL_IO_LOGGING=0'], | |
| 11 'NAME' : 'nacl_io', | 12 'NAME' : 'nacl_io', |
| 12 'TYPE' : 'lib', | 13 'TYPE' : 'lib', |
| 13 'SOURCES' : [ | 14 'SOURCES' : [ |
| 14 "devfs/dev_fs.cc", | 15 "devfs/dev_fs.cc", |
| 15 "devfs/jspipe_node.cc", | 16 "devfs/jspipe_node.cc", |
| 17 "devfs/jspipe_event_emitter.cc", | |
|
binji
2014/05/01 20:22:31
alphabetize
Sam Clegg
2014/05/01 22:16:55
Done.
| |
| 16 "devfs/tty_event_emitter.cc", | 18 "devfs/tty_event_emitter.cc", |
| 17 "devfs/tty_node.cc", | 19 "devfs/tty_node.cc", |
| 18 "dir_node.cc", | 20 "dir_node.cc", |
| 19 "event_emitter.cc", | 21 "event_emitter.cc", |
| 20 "event_listener.cc", | 22 "event_listener.cc", |
| 21 "fifo_char.cc", | 23 "fifo_char.cc", |
| 22 "filesystem.cc", | 24 "filesystem.cc", |
| 23 "fusefs/fuse_fs.cc", | 25 "fusefs/fuse_fs.cc", |
| 24 "fusefs/fuse_fs_factory.cc", | 26 "fusefs/fuse_fs_factory.cc", |
| 25 "getdents_helper.cc", | 27 "getdents_helper.cc", |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 156 "syscalls/utimes.c", | 158 "syscalls/utimes.c", |
| 157 ], | 159 ], |
| 158 } | 160 } |
| 159 ], | 161 ], |
| 160 'HEADERS': [ | 162 'HEADERS': [ |
| 161 { | 163 { |
| 162 'FILES': [ | 164 'FILES': [ |
| 163 "char_node.h", | 165 "char_node.h", |
| 164 "devfs/dev_fs.h", | 166 "devfs/dev_fs.h", |
| 165 "devfs/jspipe_node.h", | 167 "devfs/jspipe_node.h", |
| 168 "devfs/jspipe_event_emitter.h", | |
| 166 "devfs/tty_event_emitter.h", | 169 "devfs/tty_event_emitter.h", |
| 167 "devfs/tty_node.h", | 170 "devfs/tty_node.h", |
| 168 "dir_node.h", | 171 "dir_node.h", |
| 169 "error.h", | 172 "error.h", |
| 170 "event_emitter.h", | 173 "event_emitter.h", |
| 171 "event_listener.h", | 174 "event_listener.h", |
| 172 "fifo_char.h", | 175 "fifo_char.h", |
| 173 "fifo_interface.h", | 176 "fifo_interface.h", |
| 174 "fifo_null.h", | 177 "fifo_null.h", |
| 175 "filesystem.h", | 178 "filesystem.h", |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 278 "all_interfaces.h", | 281 "all_interfaces.h", |
| 279 "define_empty_macros.h", | 282 "define_empty_macros.h", |
| 280 "undef_macros.h", | 283 "undef_macros.h", |
| 281 ], | 284 ], |
| 282 'DEST': 'include/nacl_io/pepper', | 285 'DEST': 'include/nacl_io/pepper', |
| 283 } | 286 } |
| 284 ], | 287 ], |
| 285 'DEST': 'src', | 288 'DEST': 'src', |
| 286 'NAME': 'nacl_io', | 289 'NAME': 'nacl_io', |
| 287 } | 290 } |
| OLD | NEW |