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

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: Created 8 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
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 24 matching lines...) Expand all
35 # ---------------------------------------------------------- 35 # ----------------------------------------------------------
36 # TODO(robertm): this library is too big and needs to be split up 36 # TODO(robertm): this library is too big and needs to be split up
37 # for easier unit testing 37 # for easier unit testing
38 ldr_inputs = [ 38 ldr_inputs = [
39 'dyn_array.c', 39 'dyn_array.c',
40 'elf_util.c', 40 'elf_util.c',
41 'nacl_all_modules.c', 41 'nacl_all_modules.c',
42 'nacl_app_thread.c', 42 'nacl_app_thread.c',
43 'nacl_bootstrap_channel_error_reporter.c', 43 'nacl_bootstrap_channel_error_reporter.c',
44 'nacl_copy.c', 44 'nacl_copy.c',
45 'nacl_command_service.c',
45 'nacl_desc_effector_ldr.c', 46 'nacl_desc_effector_ldr.c',
46 'nacl_desc_postmessage.c', 47 'nacl_desc_postmessage.c',
47 'nacl_error_gio.c', 48 'nacl_error_gio.c',
48 'nacl_error_log_hook.c', 49 'nacl_error_log_hook.c',
49 'nacl_globals.c', 50 'nacl_globals.c',
50 'nacl_kern_services.c', 51 'nacl_kern_services.c',
51 'nacl_resource.c', 52 'nacl_resource.c',
52 'nacl_reverse_quota_interface.c', 53 'nacl_reverse_quota_interface.c',
54 'nacl_secure_service.c',
53 'nacl_signal_common.c', 55 'nacl_signal_common.c',
54 'nacl_stack_safety.c', 56 'nacl_stack_safety.c',
55 'nacl_syscall_common.c', 57 'nacl_syscall_common.c',
56 GENERATED + '/nacl_syscall_handlers.c', 58 GENERATED + '/nacl_syscall_handlers.c',
57 'nacl_syscall_hook.c', 59 'nacl_syscall_hook.c',
58 'nacl_text.c', 60 'nacl_text.c',
59 'nacl_valgrind_hooks.c', 61 'nacl_valgrind_hooks.c',
60 'name_service/default_name_service.c', 62 'name_service/default_name_service.c',
61 'name_service/name_service.c', 63 'name_service/name_service.c',
62 'sel_addrspace.c', 64 'sel_addrspace.c',
(...skipping 903 matching lines...) Expand 10 before | Expand all | Expand 10 after
966 node = env.CommandTest( 968 node = env.CommandTest(
967 'nacl_error_log_test.out', 969 'nacl_error_log_test.out',
968 command=[exe], 970 command=[exe],
969 exit_status=expected_exit, 971 exit_status=expected_exit,
970 filter_regex='"(NaClCrashLogWriter.*)|(This is a test of the emergency.*)"', 972 filter_regex='"(NaClCrashLogWriter.*)|(This is a test of the emergency.*)"',
971 filter_group_only='true', 973 filter_group_only='true',
972 stdout_golden=env.File('nacl_error_log_test.stdout')) 974 stdout_golden=env.File('nacl_error_log_test.stdout'))
973 975
974 env.AddNodeToTestSuite(node, ['small_tests'], 976 env.AddNodeToTestSuite(node, ['small_tests'],
975 'run_nacl_error_log_test') 977 'run_nacl_error_log_test')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698