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

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

Issue 891603002: Removes the name service from the service runtime (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Fixes code review comments Created 5 years, 10 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
« no previous file with comments | « src/trusted/service_runtime/BUILD.gn ('k') | src/trusted/service_runtime/elf_util.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 30 matching lines...) Expand all
41 'nacl_reverse_quota_interface.c', 41 'nacl_reverse_quota_interface.c',
42 'nacl_runtime_host_interface.c', 42 'nacl_runtime_host_interface.c',
43 'nacl_secure_service.c', 43 'nacl_secure_service.c',
44 'nacl_signal_common.c', 44 'nacl_signal_common.c',
45 'nacl_stack_safety.c', 45 'nacl_stack_safety.c',
46 'nacl_syscall_common.c', 46 'nacl_syscall_common.c',
47 'nacl_syscall_hook.c', 47 'nacl_syscall_hook.c',
48 'nacl_syscall_list.c', 48 'nacl_syscall_list.c',
49 'nacl_text.c', 49 'nacl_text.c',
50 'nacl_valgrind_hooks.c', 50 'nacl_valgrind_hooks.c',
51 'name_service/name_service.c',
52 'sel_addrspace.c', 51 'sel_addrspace.c',
53 'sel_ldr.c', 52 'sel_ldr.c',
54 'sel_ldr_standard.c', 53 'sel_ldr_standard.c',
55 'sel_ldr_thread_interface.c', 54 'sel_ldr_thread_interface.c',
56 'sel_main_common.c', 55 'sel_main_common.c',
57 'sel_mem.c', 56 'sel_mem.c',
58 'sel_qualify.c', 57 'sel_qualify.c',
59 'sel_validate_image.c', 58 'sel_validate_image.c',
60 'sys_exception.c', 59 'sys_exception.c',
61 'sys_fdio.c', 60 'sys_fdio.c',
(...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after
1010 is_broken=is_broken) 1009 is_broken=is_broken)
1011 1010
1012 dyn_array_test_exe = env.ComponentProgram('dyn_array_test', 1011 dyn_array_test_exe = env.ComponentProgram('dyn_array_test',
1013 ['dyn_array_test.c'], 1012 ['dyn_array_test.c'],
1014 EXTRA_LIBS=sel_ldr_libs) 1013 EXTRA_LIBS=sel_ldr_libs)
1015 1014
1016 node = env.CommandTest('dyn_array_test.out', 1015 node = env.CommandTest('dyn_array_test.out',
1017 command=[dyn_array_test_exe]) 1016 command=[dyn_array_test_exe])
1018 1017
1019 env.AddNodeToTestSuite(node, ['small_tests'], 'run_dyn_array_test') 1018 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/elf_util.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698