| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 assert(is_nacl, | 5 assert(is_nacl, |
| 6 "These targets must only be built using the untrusted NaCl toolchains.") | 6 "These targets must only be built using the untrusted NaCl toolchains.") |
| 7 | 7 |
| 8 config("nacl_io_config") { | 8 config("nacl_io_config") { |
| 9 cflags = [ "-Wno-sign-compare" ] | 9 cflags = [ "-Wno-sign-compare" ] |
| 10 } | 10 } |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "devfs/jspipe_node.cc", | 24 "devfs/jspipe_node.cc", |
| 25 "devfs/tty_node.cc", | 25 "devfs/tty_node.cc", |
| 26 "dir_node.cc", | 26 "dir_node.cc", |
| 27 "event_emitter.cc", | 27 "event_emitter.cc", |
| 28 "event_listener.cc", | 28 "event_listener.cc", |
| 29 "fifo_char.cc", | 29 "fifo_char.cc", |
| 30 "filesystem.cc", | 30 "filesystem.cc", |
| 31 "fusefs/fuse_fs.cc", | 31 "fusefs/fuse_fs.cc", |
| 32 "fusefs/fuse_fs_factory.cc", | 32 "fusefs/fuse_fs_factory.cc", |
| 33 "getdents_helper.cc", | 33 "getdents_helper.cc", |
| 34 "googledrivefs/googledrivefs.cc", |
| 34 "h_errno.c", | 35 "h_errno.c", |
| 35 "host_resolver.cc", | 36 "host_resolver.cc", |
| 36 "html5fs/html5_fs.cc", | 37 "html5fs/html5_fs.cc", |
| 37 "html5fs/html5_fs_node.cc", | 38 "html5fs/html5_fs_node.cc", |
| 38 "httpfs/http_fs.cc", | 39 "httpfs/http_fs.cc", |
| 39 "httpfs/http_fs_node.cc", | 40 "httpfs/http_fs_node.cc", |
| 40 "in6_addr.c", | 41 "in6_addr.c", |
| 41 "jsfs/js_fs.cc", | 42 "jsfs/js_fs.cc", |
| 42 "jsfs/js_fs_node.cc", | 43 "jsfs/js_fs_node.cc", |
| 43 "kernel_handle.cc", | 44 "kernel_handle.cc", |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 "syscalls/umount.c", | 148 "syscalls/umount.c", |
| 148 "syscalls/uname.c", | 149 "syscalls/uname.c", |
| 149 "syscalls/utime.c", | 150 "syscalls/utime.c", |
| 150 ] | 151 ] |
| 151 | 152 |
| 152 include_dirs = [ ".." ] | 153 include_dirs = [ ".." ] |
| 153 configs += [ ":nacl_io_config" ] | 154 configs += [ ":nacl_io_config" ] |
| 154 | 155 |
| 155 public_configs = [ ":nacl_io_include_dirs" ] | 156 public_configs = [ ":nacl_io_include_dirs" ] |
| 156 } | 157 } |
| OLD | NEW |