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

Side by Side Diff: src/trusted/service_runtime/build.scons

Issue 550523002: Remove the old "SecureRandom" service, formerly used by get_random_bytes() (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: 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 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import platform 6 import platform
7 import os 7 import os
8 8
9 Import('env') 9 Import('env')
10 10
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'nacl_reverse_quota_interface.c', 54 'nacl_reverse_quota_interface.c',
55 'nacl_runtime_host_interface.c', 55 'nacl_runtime_host_interface.c',
56 'nacl_secure_service.c', 56 'nacl_secure_service.c',
57 'nacl_signal_common.c', 57 'nacl_signal_common.c',
58 'nacl_stack_safety.c', 58 'nacl_stack_safety.c',
59 'nacl_syscall_common.c', 59 'nacl_syscall_common.c',
60 GENERATED + '/nacl_syscall_handlers.c', 60 GENERATED + '/nacl_syscall_handlers.c',
61 'nacl_syscall_hook.c', 61 'nacl_syscall_hook.c',
62 'nacl_text.c', 62 'nacl_text.c',
63 'nacl_valgrind_hooks.c', 63 'nacl_valgrind_hooks.c',
64 'name_service/default_name_service.c',
65 'name_service/name_service.c', 64 'name_service/name_service.c',
66 'sel_addrspace.c', 65 'sel_addrspace.c',
67 'sel_ldr.c', 66 'sel_ldr.c',
68 'sel_ldr_standard.c', 67 'sel_ldr_standard.c',
69 'sel_ldr_thread_interface.c', 68 'sel_ldr_thread_interface.c',
70 'sel_main_common.c', 69 'sel_main_common.c',
71 'sel_mem.c', 70 'sel_mem.c',
72 'sel_qualify.c', 71 'sel_qualify.c',
73 'sel_validate_image.c', 72 'sel_validate_image.c',
74 'sys_exception.c', 73 'sys_exception.c',
(...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after
1047 is_broken=is_broken) 1046 is_broken=is_broken)
1048 1047
1049 dyn_array_test_exe = env.ComponentProgram('dyn_array_test', 1048 dyn_array_test_exe = env.ComponentProgram('dyn_array_test',
1050 ['dyn_array_test.c'], 1049 ['dyn_array_test.c'],
1051 EXTRA_LIBS=sel_ldr_libs) 1050 EXTRA_LIBS=sel_ldr_libs)
1052 1051
1053 node = env.CommandTest('dyn_array_test.out', 1052 node = env.CommandTest('dyn_array_test.out',
1054 command=[dyn_array_test_exe]) 1053 command=[dyn_array_test_exe])
1055 1054
1056 env.AddNodeToTestSuite(node, ['small_tests'], 'run_dyn_array_test') 1055 env.AddNodeToTestSuite(node, ['small_tests'], 'run_dyn_array_test')
OLDNEW
« no previous file with comments | « src/trusted/service_runtime/BUILD.gn ('k') | src/trusted/service_runtime/name_service/default_name_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698