| 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 26 matching lines...) Expand all Loading... |
| 37 "html5fs/html5_fs_node.cc", | 37 "html5fs/html5_fs_node.cc", |
| 38 "httpfs/http_fs.cc", | 38 "httpfs/http_fs.cc", |
| 39 "httpfs/http_fs_node.cc", | 39 "httpfs/http_fs_node.cc", |
| 40 "in6_addr.c", | 40 "in6_addr.c", |
| 41 "jsfs/js_fs.cc", | 41 "jsfs/js_fs.cc", |
| 42 "jsfs/js_fs_node.cc", | 42 "jsfs/js_fs_node.cc", |
| 43 "kernel_handle.cc", | 43 "kernel_handle.cc", |
| 44 "kernel_intercept.cc", | 44 "kernel_intercept.cc", |
| 45 "kernel_object.cc", | 45 "kernel_object.cc", |
| 46 "kernel_proxy.cc", | 46 "kernel_proxy.cc", |
| 47 "kernel_wrap_bionic.cc", | |
| 48 "kernel_wrap_dummy.cc", | 47 "kernel_wrap_dummy.cc", |
| 49 "kernel_wrap_glibc.cc", | 48 "kernel_wrap_glibc.cc", |
| 50 "kernel_wrap_irt_ext.c", | 49 "kernel_wrap_irt_ext.c", |
| 51 "kernel_wrap_newlib.cc", | 50 "kernel_wrap_newlib.cc", |
| 52 "kernel_wrap_win.cc", | 51 "kernel_wrap_win.cc", |
| 53 "log.c", | 52 "log.c", |
| 54 "memfs/mem_fs.cc", | 53 "memfs/mem_fs.cc", |
| 55 "memfs/mem_fs_node.cc", | 54 "memfs/mem_fs_node.cc", |
| 56 "nacl_io.cc", | 55 "nacl_io.cc", |
| 57 "node.cc", | 56 "node.cc", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 "syscalls/umount.c", | 147 "syscalls/umount.c", |
| 149 "syscalls/uname.c", | 148 "syscalls/uname.c", |
| 150 "syscalls/utime.c", | 149 "syscalls/utime.c", |
| 151 ] | 150 ] |
| 152 | 151 |
| 153 include_dirs = [ ".." ] | 152 include_dirs = [ ".." ] |
| 154 configs += [ ":nacl_io_config" ] | 153 configs += [ ":nacl_io_config" ] |
| 155 | 154 |
| 156 public_configs = [ ":nacl_io_include_dirs" ] | 155 public_configs = [ ":nacl_io_include_dirs" ] |
| 157 } | 156 } |
| OLD | NEW |