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

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

Issue 10914138: Split secure command channel and untrusted application channel (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: CommandSetup SRPC call added to secure command service. Created 8 years, 2 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 'nacl_bootstrap_channel_error_reporter.c', 43 'nacl_bootstrap_channel_error_reporter.c',
44 'nacl_copy.c', 44 'nacl_copy.c',
45 'nacl_desc_effector_ldr.c', 45 'nacl_desc_effector_ldr.c',
46 'nacl_desc_postmessage.c', 46 'nacl_desc_postmessage.c',
47 'nacl_error_gio.c', 47 'nacl_error_gio.c',
48 'nacl_error_log_hook.c', 48 'nacl_error_log_hook.c',
49 'nacl_globals.c', 49 'nacl_globals.c',
50 'nacl_kernel_service.c', 50 'nacl_kernel_service.c',
51 'nacl_resource.c', 51 'nacl_resource.c',
52 'nacl_reverse_quota_interface.c', 52 'nacl_reverse_quota_interface.c',
53 'nacl_secure_service.c',
53 'nacl_signal_common.c', 54 'nacl_signal_common.c',
54 'nacl_stack_safety.c', 55 'nacl_stack_safety.c',
55 'nacl_syscall_common.c', 56 'nacl_syscall_common.c',
56 GENERATED + '/nacl_syscall_handlers.c', 57 GENERATED + '/nacl_syscall_handlers.c',
57 'nacl_syscall_hook.c', 58 'nacl_syscall_hook.c',
58 'nacl_text.c', 59 'nacl_text.c',
59 'nacl_valgrind_hooks.c', 60 'nacl_valgrind_hooks.c',
60 'name_service/default_name_service.c', 61 'name_service/default_name_service.c',
61 'name_service/name_service.c', 62 'name_service/name_service.c',
62 'sel_addrspace.c', 63 'sel_addrspace.c',
(...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 node = env.CommandTest( 995 node = env.CommandTest(
995 'nacl_error_log_test.out', 996 'nacl_error_log_test.out',
996 command=[exe], 997 command=[exe],
997 exit_status=expected_exit, 998 exit_status=expected_exit,
998 filter_regex='"(NaClCrashLogWriter.*)|(This is a test of the emergency.*)"', 999 filter_regex='"(NaClCrashLogWriter.*)|(This is a test of the emergency.*)"',
999 filter_group_only='true', 1000 filter_group_only='true',
1000 stdout_golden=env.File('nacl_error_log_test.stdout')) 1001 stdout_golden=env.File('nacl_error_log_test.stdout'))
1001 1002
1002 env.AddNodeToTestSuite(node, ['small_tests'], 1003 env.AddNodeToTestSuite(node, ['small_tests'],
1003 'run_nacl_error_log_test') 1004 'run_nacl_error_log_test')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698