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", |
| 35 "googledrivefs/googledrivefs_node.cc", |
| 36 "googledrivefs/googledrivefs_util.cc", |
34 "h_errno.c", | 37 "h_errno.c", |
| 38 "hash.cc", |
35 "host_resolver.cc", | 39 "host_resolver.cc", |
36 "html5fs/html5_fs.cc", | 40 "html5fs/html5_fs.cc", |
37 "html5fs/html5_fs_node.cc", | 41 "html5fs/html5_fs_node.cc", |
38 "httpfs/http_fs.cc", | 42 "httpfs/http_fs.cc", |
39 "httpfs/http_fs_node.cc", | 43 "httpfs/http_fs_node.cc", |
40 "in6_addr.c", | 44 "in6_addr.c", |
41 "jsfs/js_fs.cc", | 45 "jsfs/js_fs.cc", |
42 "jsfs/js_fs_node.cc", | 46 "jsfs/js_fs_node.cc", |
43 "kernel_handle.cc", | 47 "kernel_handle.cc", |
44 "kernel_intercept.cc", | 48 "kernel_intercept.cc", |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 "syscalls/umount.c", | 151 "syscalls/umount.c", |
148 "syscalls/uname.c", | 152 "syscalls/uname.c", |
149 "syscalls/utime.c", | 153 "syscalls/utime.c", |
150 ] | 154 ] |
151 | 155 |
152 include_dirs = [ ".." ] | 156 include_dirs = [ ".." ] |
153 configs += [ ":nacl_io_config" ] | 157 configs += [ ":nacl_io_config" ] |
154 | 158 |
155 public_configs = [ ":nacl_io_include_dirs" ] | 159 public_configs = [ ":nacl_io_include_dirs" ] |
156 } | 160 } |
OLD | NEW |