| OLD | NEW |
| 1 # Copyright (c) 2014 The Native ClientAuthors. All rights reserved. | 1 # Copyright (c) 2014 The Native ClientAuthors. 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 # Generated from GYP | 5 # Generated from GYP |
| 6 | 6 |
| 7 if (is_posix) { | 7 if (is_posix) { |
| 8 syscall_handler_in = "posix/nacl_syscall_impl.c" | 8 syscall_handler_in = "posix/nacl_syscall_impl.c" |
| 9 } else { | 9 } else { |
| 10 syscall_handler_in = "win/nacl_syscall_impl.c" | 10 syscall_handler_in = "win/nacl_syscall_impl.c" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "sel_qualify.c", | 83 "sel_qualify.c", |
| 84 "sel_validate_image.c", | 84 "sel_validate_image.c", |
| 85 "sys_exception.c", | 85 "sys_exception.c", |
| 86 "sys_fdio.c", | 86 "sys_fdio.c", |
| 87 "sys_filename.c", | 87 "sys_filename.c", |
| 88 "sys_futex.c", | 88 "sys_futex.c", |
| 89 "sys_imc.c", | 89 "sys_imc.c", |
| 90 "sys_list_mappings.c", | 90 "sys_list_mappings.c", |
| 91 "sys_memory.c", | 91 "sys_memory.c", |
| 92 "sys_parallel_io.c", | 92 "sys_parallel_io.c", |
| 93 "sys_random.c", |
| 93 "thread_suspension_common.c", | 94 "thread_suspension_common.c", |
| 94 "thread_suspension_unwind.c", | 95 "thread_suspension_unwind.c", |
| 95 ] | 96 ] |
| 96 | 97 |
| 97 if (os == "linux") { | 98 if (os == "linux") { |
| 98 sources += [ | 99 sources += [ |
| 99 "linux/nacl_signal.c", | 100 "linux/nacl_signal.c", |
| 100 ] | 101 ] |
| 101 if (cpu_arch == "x86") { | 102 if (cpu_arch == "x86") { |
| 102 sources += ["linux/nacl_signal_32.c"] | 103 sources += ["linux/nacl_signal_32.c"] |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 libs = ["rt"] | 267 libs = ["rt"] |
| 267 ldflags = ["-pie"] | 268 ldflags = ["-pie"] |
| 268 } | 269 } |
| 269 if (is_linux) { | 270 if (is_linux) { |
| 270 datadeps = [ | 271 datadeps = [ |
| 271 "//native_client/src/trusted/service_runtime/linux:nacl_helper_bootstrap" | 272 "//native_client/src/trusted/service_runtime/linux:nacl_helper_bootstrap" |
| 272 ] | 273 ] |
| 273 } | 274 } |
| 274 } | 275 } |
| 275 | 276 |
| OLD | NEW |