OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../../build/common_untrusted.gypi', | 10 '../../build/common_untrusted.gypi', |
(...skipping 12 matching lines...) Expand all Loading... |
23 'build_irt': 0, | 23 'build_irt': 0, |
24 'build_pnacl_newlib': 0, | 24 'build_pnacl_newlib': 0, |
25 'build_nonsfi_helper': 1, | 25 'build_nonsfi_helper': 1, |
26 | 26 |
27 'sources': [ | 27 'sources': [ |
28 # This is the subset of linux build target, needed for | 28 # This is the subset of linux build target, needed for |
29 # nacl_helper_nonsfi's sandbox implementation. | 29 # nacl_helper_nonsfi's sandbox implementation. |
30 'bpf_dsl/bpf_dsl.cc', | 30 'bpf_dsl/bpf_dsl.cc', |
31 'bpf_dsl/codegen.cc', | 31 'bpf_dsl/codegen.cc', |
32 'bpf_dsl/dump_bpf.cc', | 32 'bpf_dsl/dump_bpf.cc', |
| 33 'bpf_dsl/errorcode.cc', |
33 'bpf_dsl/policy.cc', | 34 'bpf_dsl/policy.cc', |
34 'bpf_dsl/policy_compiler.cc', | 35 'bpf_dsl/policy_compiler.cc', |
35 'bpf_dsl/syscall_set.cc', | 36 'bpf_dsl/syscall_set.cc', |
36 'bpf_dsl/verifier.cc', | 37 'bpf_dsl/verifier.cc', |
37 'seccomp-bpf-helpers/sigsys_handlers.cc', | 38 'seccomp-bpf-helpers/sigsys_handlers.cc', |
38 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', | 39 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', |
39 'seccomp-bpf/die.cc', | 40 'seccomp-bpf/die.cc', |
40 'seccomp-bpf/errorcode.cc', | |
41 'seccomp-bpf/sandbox_bpf.cc', | 41 'seccomp-bpf/sandbox_bpf.cc', |
42 'seccomp-bpf/syscall.cc', | 42 'seccomp-bpf/syscall.cc', |
43 'seccomp-bpf/trap.cc', | 43 'seccomp-bpf/trap.cc', |
44 'services/credentials.cc', | 44 'services/credentials.cc', |
45 'services/namespace_sandbox.cc', | 45 'services/namespace_sandbox.cc', |
46 'services/namespace_utils.cc', | 46 'services/namespace_utils.cc', |
47 'services/proc_util.cc', | 47 'services/proc_util.cc', |
48 'services/resource_limits.cc', | 48 'services/resource_limits.cc', |
49 'services/syscall_wrappers.cc', | 49 'services/syscall_wrappers.cc', |
50 'services/thread_helpers.cc', | 50 'services/thread_helpers.cc', |
(...skipping 28 matching lines...) Expand all Loading... |
79 ], | 79 ], |
80 }, | 80 }, |
81 'dependencies': [ | 81 'dependencies': [ |
82 '../../testing/gtest_nacl.gyp:gtest_nacl', | 82 '../../testing/gtest_nacl.gyp:gtest_nacl', |
83 ], | 83 ], |
84 }, | 84 }, |
85 ], | 85 ], |
86 }], | 86 }], |
87 ], | 87 ], |
88 } | 88 } |
OLD | NEW |