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

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

Issue 6995160: Hooks for out-of-process (OOP) debugger. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 6 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) 2011 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2011 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 7
8 Import('env') 8 Import('env')
9 9
10 # TODO(robertm): consider adding this to the top level scons files 10 # TODO(robertm): consider adding this to the top level scons files
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 ldr_inputs = [ 70 ldr_inputs = [
71 'dyn_array.c', 71 'dyn_array.c',
72 'elf_util.c', 72 'elf_util.c',
73 'nacl_all_modules.c', 73 'nacl_all_modules.c',
74 'nacl_app_thread.c', 74 'nacl_app_thread.c',
75 'nacl_bottom_half.c', 75 'nacl_bottom_half.c',
76 'nacl_closure.c', 76 'nacl_closure.c',
77 'nacl_desc_effector_ldr.c', 77 'nacl_desc_effector_ldr.c',
78 'nacl_globals.c', 78 'nacl_globals.c',
79 'nacl_memory_object.c', 79 'nacl_memory_object.c',
80 'nacl_oop_debugger_hooks.c',
80 'nacl_signal_common.c', 81 'nacl_signal_common.c',
81 'nacl_stack_safety.c', 82 'nacl_stack_safety.c',
82 'nacl_sync_queue.c', 83 'nacl_sync_queue.c',
83 'nacl_syscall_common.c', 84 'nacl_syscall_common.c',
84 GENERATED + '/nacl_syscall_handlers.c', 85 GENERATED + '/nacl_syscall_handlers.c',
85 'nacl_syscall_hook.c', 86 'nacl_syscall_hook.c',
86 'nacl_text.c', 87 'nacl_text.c',
87 'nacl_valgrind_hooks.c', 88 'nacl_valgrind_hooks.c',
88 'name_service/default_name_service.c', 89 'name_service/default_name_service.c',
89 'name_service/name_service.c', 90 'name_service/name_service.c',
(...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 expected_exit_status = 'sigabrt' 784 expected_exit_status = 'sigabrt'
784 node = env.CommandTest( 785 node = env.CommandTest(
785 'sel_ldr_thread_death_test.out', 786 'sel_ldr_thread_death_test.out',
786 command=[sel_ldr_thread_death_test_exe], 787 command=[sel_ldr_thread_death_test_exe],
787 exit_status=expected_exit_status) 788 exit_status=expected_exit_status)
788 789
789 # TODO(tuduce): Make it work on windows. 790 # TODO(tuduce): Make it work on windows.
790 env.AddNodeToTestSuite(node, ['medium_tests'], 791 env.AddNodeToTestSuite(node, ['medium_tests'],
791 'run_sel_ldr_thread_death_test', 792 'run_sel_ldr_thread_death_test',
792 is_broken=env.Bit('windows')) 793 is_broken=env.Bit('windows'))
OLDNEW
« no previous file with comments | « no previous file | src/trusted/service_runtime/nacl_app_thread.c » ('j') | src/trusted/service_runtime/nacl_app_thread.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698