| 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 static_library("sel_main") { | 5 static_library("sel_main") { |
| 6 sources = [ | 6 sources = [ |
| 7 "sel_main.c", | 7 "sel_main.c", |
| 8 ] | 8 ] |
| 9 deps = [ | 9 deps = [ |
| 10 "//native_client/build/config/nacl:nacl_base", | 10 "//native_client/build/config/nacl:nacl_base", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "nacl_reverse_quota_interface.c", | 61 "nacl_reverse_quota_interface.c", |
| 62 "nacl_runtime_host_interface.c", | 62 "nacl_runtime_host_interface.c", |
| 63 "nacl_secure_service.c", | 63 "nacl_secure_service.c", |
| 64 "nacl_signal_common.c", | 64 "nacl_signal_common.c", |
| 65 "nacl_stack_safety.c", | 65 "nacl_stack_safety.c", |
| 66 "nacl_syscall_common.c", | 66 "nacl_syscall_common.c", |
| 67 "nacl_syscall_hook.c", | 67 "nacl_syscall_hook.c", |
| 68 "nacl_syscall_list.c", | 68 "nacl_syscall_list.c", |
| 69 "nacl_text.c", | 69 "nacl_text.c", |
| 70 "nacl_valgrind_hooks.c", | 70 "nacl_valgrind_hooks.c", |
| 71 "name_service/name_service.c", | |
| 72 "sel_addrspace.c", | 71 "sel_addrspace.c", |
| 73 "sel_ldr.c", | 72 "sel_ldr.c", |
| 74 "sel_ldr_standard.c", | 73 "sel_ldr_standard.c", |
| 75 "sel_ldr_thread_interface.c", | 74 "sel_ldr_thread_interface.c", |
| 76 "sel_main_common.c", | 75 "sel_main_common.c", |
| 77 "sel_mem.c", | 76 "sel_mem.c", |
| 78 "sel_qualify.c", | 77 "sel_qualify.c", |
| 79 "sel_validate_image.c", | 78 "sel_validate_image.c", |
| 80 "sys_exception.c", | 79 "sys_exception.c", |
| 81 "sys_fdio.c", | 80 "sys_fdio.c", |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 libs = ["rt"] | 249 libs = ["rt"] |
| 251 ldflags = ["-pie"] | 250 ldflags = ["-pie"] |
| 252 } | 251 } |
| 253 if (is_linux) { | 252 if (is_linux) { |
| 254 datadeps = [ | 253 datadeps = [ |
| 255 "//native_client/src/trusted/service_runtime/linux:munge_nacl_helper_boots
trap" | 254 "//native_client/src/trusted/service_runtime/linux:munge_nacl_helper_boots
trap" |
| 256 ] | 255 ] |
| 257 } | 256 } |
| 258 } | 257 } |
| 259 | 258 |
| OLD | NEW |