OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'conditions': [ | 7 'conditions': [ |
8 ['OS=="linux"', { | 8 ['OS=="linux"', { |
9 'compile_suid_client': 1, | 9 'compile_suid_client': 1, |
10 'compile_credentials': 1, | 10 'compile_credentials': 1, |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 'bpf_dsl/linux_syscall_ranges.h', | 130 'bpf_dsl/linux_syscall_ranges.h', |
131 'bpf_dsl/policy.cc', | 131 'bpf_dsl/policy.cc', |
132 'bpf_dsl/policy.h', | 132 'bpf_dsl/policy.h', |
133 'bpf_dsl/policy_compiler.cc', | 133 'bpf_dsl/policy_compiler.cc', |
134 'bpf_dsl/policy_compiler.h', | 134 'bpf_dsl/policy_compiler.h', |
135 'bpf_dsl/seccomp_macros.h', | 135 'bpf_dsl/seccomp_macros.h', |
136 'bpf_dsl/seccomp_macros.h', | 136 'bpf_dsl/seccomp_macros.h', |
137 'bpf_dsl/syscall_set.cc', | 137 'bpf_dsl/syscall_set.cc', |
138 'bpf_dsl/syscall_set.h', | 138 'bpf_dsl/syscall_set.h', |
139 'bpf_dsl/trap_registry.h', | 139 'bpf_dsl/trap_registry.h', |
| 140 'bpf_dsl/verifier.cc', |
| 141 'bpf_dsl/verifier.h', |
140 'seccomp-bpf/die.cc', | 142 'seccomp-bpf/die.cc', |
141 'seccomp-bpf/die.h', | 143 'seccomp-bpf/die.h', |
142 'seccomp-bpf/errorcode.cc', | 144 'seccomp-bpf/errorcode.cc', |
143 'seccomp-bpf/errorcode.h', | 145 'seccomp-bpf/errorcode.h', |
144 'seccomp-bpf/sandbox_bpf.cc', | 146 'seccomp-bpf/sandbox_bpf.cc', |
145 'seccomp-bpf/sandbox_bpf.h', | 147 'seccomp-bpf/sandbox_bpf.h', |
146 'seccomp-bpf/syscall.cc', | 148 'seccomp-bpf/syscall.cc', |
147 'seccomp-bpf/syscall.h', | 149 'seccomp-bpf/syscall.h', |
148 'seccomp-bpf/trap.cc', | 150 'seccomp-bpf/trap.cc', |
149 'seccomp-bpf/trap.h', | 151 'seccomp-bpf/trap.h', |
150 'seccomp-bpf/verifier.cc', | |
151 'seccomp-bpf/verifier.h', | |
152 ], | 152 ], |
153 'dependencies': [ | 153 'dependencies': [ |
154 '../base/base.gyp:base', | 154 '../base/base.gyp:base', |
155 'sandbox_services', | 155 'sandbox_services', |
156 'sandbox_services_headers', | 156 'sandbox_services_headers', |
157 ], | 157 ], |
158 'defines': [ | 158 'defines': [ |
159 'SANDBOX_IMPLEMENTATION', | 159 'SANDBOX_IMPLEMENTATION', |
160 ], | 160 ], |
161 'includes': [ | 161 'includes': [ |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 '../../build/isolate.gypi', | 395 '../../build/isolate.gypi', |
396 ], | 396 ], |
397 'sources': [ | 397 'sources': [ |
398 '../sandbox_linux_unittests.isolate', | 398 '../sandbox_linux_unittests.isolate', |
399 ], | 399 ], |
400 }, | 400 }, |
401 ], | 401 ], |
402 }], | 402 }], |
403 ], | 403 ], |
404 } | 404 } |
OLD | NEW |