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

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

Issue 23484041: Split filename-based syscall implementations into a separate file (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fix missing #includes for Windows Created 7 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
« no previous file with comments | « src/shared/platform/nacl_host_desc.h ('k') | src/trusted/service_runtime/nacl_syscall_common.h » ('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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 'name_service/default_name_service.c', 64 'name_service/default_name_service.c',
65 'name_service/name_service.c', 65 'name_service/name_service.c',
66 'sel_addrspace.c', 66 'sel_addrspace.c',
67 'sel_ldr.c', 67 'sel_ldr.c',
68 'sel_ldr_standard.c', 68 'sel_ldr_standard.c',
69 'sel_ldr_thread_interface.c', 69 'sel_ldr_thread_interface.c',
70 'sel_mem.c', 70 'sel_mem.c',
71 'sel_qualify.c', 71 'sel_qualify.c',
72 'sel_validate_image.c', 72 'sel_validate_image.c',
73 'sys_exception.c', 73 'sys_exception.c',
74 'sys_filename.c',
74 'sys_imc.c', 75 'sys_imc.c',
75 'sys_list_mappings.c', 76 'sys_list_mappings.c',
76 'thread_suspension_common.c', 77 'thread_suspension_common.c',
77 'thread_suspension_unwind.c', 78 'thread_suspension_unwind.c',
78 ] 79 ]
79 80
80 if env.Bit('build_x86_32'): 81 if env.Bit('build_x86_32'):
81 ldr_inputs += [ 82 ldr_inputs += [
82 'arch/x86/nacl_ldt_x86.c', 83 'arch/x86/nacl_ldt_x86.c',
83 'arch/x86_32/nacl_app_32.c', 84 'arch/x86_32/nacl_app_32.c',
(...skipping 981 matching lines...) Expand 10 before | Expand all | Expand 10 after
1065 is_broken=is_broken) 1066 is_broken=is_broken)
1066 1067
1067 dyn_array_test_exe = env.ComponentProgram('dyn_array_test', 1068 dyn_array_test_exe = env.ComponentProgram('dyn_array_test',
1068 ['dyn_array_test.c'], 1069 ['dyn_array_test.c'],
1069 EXTRA_LIBS=sel_ldr_libs) 1070 EXTRA_LIBS=sel_ldr_libs)
1070 1071
1071 node = env.CommandTest('dyn_array_test.out', 1072 node = env.CommandTest('dyn_array_test.out',
1072 command=[dyn_array_test_exe]) 1073 command=[dyn_array_test_exe])
1073 1074
1074 env.AddNodeToTestSuite(node, ['small_tests'], 'run_dyn_array_test') 1075 env.AddNodeToTestSuite(node, ['small_tests'], 'run_dyn_array_test')
OLDNEW
« no previous file with comments | « src/shared/platform/nacl_host_desc.h ('k') | src/trusted/service_runtime/nacl_syscall_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698