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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 'include_dirs': [ | 150 'include_dirs': [ |
151 '../..', | 151 '../..', |
152 ], | 152 ], |
153 }, | 153 }, |
154 { | 154 { |
155 'target_name': 'seccomp_bpf_helpers', | 155 'target_name': 'seccomp_bpf_helpers', |
156 'type': '<(component)', | 156 'type': '<(component)', |
157 'sources': [ | 157 'sources': [ |
158 'seccomp-bpf-helpers/baseline_policy.cc', | 158 'seccomp-bpf-helpers/baseline_policy.cc', |
159 'seccomp-bpf-helpers/baseline_policy.h', | 159 'seccomp-bpf-helpers/baseline_policy.h', |
| 160 'seccomp-bpf-helpers/bpf_dsl.cc', |
| 161 'seccomp-bpf-helpers/bpf_dsl.h', |
160 'seccomp-bpf-helpers/sigsys_handlers.cc', | 162 'seccomp-bpf-helpers/sigsys_handlers.cc', |
161 'seccomp-bpf-helpers/sigsys_handlers.h', | 163 'seccomp-bpf-helpers/sigsys_handlers.h', |
162 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', | 164 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', |
163 'seccomp-bpf-helpers/syscall_parameters_restrictions.h', | 165 'seccomp-bpf-helpers/syscall_parameters_restrictions.h', |
164 'seccomp-bpf-helpers/syscall_sets.cc', | 166 'seccomp-bpf-helpers/syscall_sets.cc', |
165 'seccomp-bpf-helpers/syscall_sets.h', | 167 'seccomp-bpf-helpers/syscall_sets.h', |
166 ], | 168 ], |
167 'dependencies': [ | 169 'dependencies': [ |
168 '../base/base.gyp:base', | 170 '../base/base.gyp:base', |
169 'seccomp_bpf', | 171 'seccomp_bpf', |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 }, | 332 }, |
331 'dependencies': [ | 333 'dependencies': [ |
332 'sandbox_linux_jni_unittests', | 334 'sandbox_linux_jni_unittests', |
333 ], | 335 ], |
334 'includes': [ '../../build/apk_test.gypi' ], | 336 'includes': [ '../../build/apk_test.gypi' ], |
335 } | 337 } |
336 ], | 338 ], |
337 }], | 339 }], |
338 ], | 340 ], |
339 } | 341 } |
OLD | NEW |