Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: src/trusted/service_runtime/BUILD.gn

Issue 537543003: Add a get_random_bytes() syscall to replace the SRPC-based implementation (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fix glibc tests Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/shared/platform/nacl_global_secure_random.c ('k') | src/trusted/service_runtime/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698