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

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

Issue 12207165: Mac x86_64: Mach exception support (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 7 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 | 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 ] 161 ]
162 elif env.Bit('mac'): 162 elif env.Bit('mac'):
163 env.Command( 163 env.Command(
164 [GENERATED + '/nacl_exc.h', GENERATED + '/nacl_exc_server.c'], 164 [GENERATED + '/nacl_exc.h', GENERATED + '/nacl_exc_server.c'],
165 ['osx/run_mig.py', '/usr/include/mach/exc.defs'], 165 ['osx/run_mig.py', '/usr/include/mach/exc.defs'],
166 '${PYTHON} ${SOURCES} ${TARGETS}') 166 '${PYTHON} ${SOURCES} ${TARGETS}')
167 ldr_inputs += [ 167 ldr_inputs += [
168 GENERATED + '/nacl_exc_server.c', 168 GENERATED + '/nacl_exc_server.c',
169 'osx/crash_filter.c', 169 'osx/crash_filter.c',
170 'osx/mach_exception_handler.c', 170 'osx/mach_exception_handler.c',
171 'osx/mach_thread_map.c',
171 'osx/nacl_ldt.c', 172 'osx/nacl_ldt.c',
172 'osx/nacl_thread_nice.c', 173 'osx/nacl_thread_nice.c',
173 'osx/outer_sandbox.c', 174 'osx/outer_sandbox.c',
174 'posix/addrspace_teardown.c', 175 'posix/addrspace_teardown.c',
175 'posix/sel_memory.c', 176 'posix/sel_memory.c',
176 'posix/x86/sel_segments.c', 177 'posix/x86/sel_segments.c',
177 ] 178 ]
178 elif env.Bit('linux'): 179 elif env.Bit('linux'):
179 ldr_inputs += [ 180 ldr_inputs += [
180 'linux/nacl_bootstrap_args.c', 181 'linux/nacl_bootstrap_args.c',
(...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after
1008 node = env.CommandTest( 1009 node = env.CommandTest(
1009 'nacl_error_log_test.out', 1010 'nacl_error_log_test.out',
1010 command=[exe], 1011 command=[exe],
1011 exit_status=expected_exit, 1012 exit_status=expected_exit,
1012 filter_regex='"(NaClCrashLogWriter.*)|(This is a test of the emergency.*)"', 1013 filter_regex='"(NaClCrashLogWriter.*)|(This is a test of the emergency.*)"',
1013 filter_group_only='true', 1014 filter_group_only='true',
1014 stdout_golden=env.File('nacl_error_log_test.stdout')) 1015 stdout_golden=env.File('nacl_error_log_test.stdout'))
1015 1016
1016 env.AddNodeToTestSuite(node, ['small_tests'], 1017 env.AddNodeToTestSuite(node, ['small_tests'],
1017 'run_nacl_error_log_test') 1018 'run_nacl_error_log_test')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698