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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 ], | 115 ], |
116 }, | 116 }, |
117 { | 117 { |
118 'target_name': 'seccomp_bpf', | 118 'target_name': 'seccomp_bpf', |
119 'type': '<(component)', | 119 'type': '<(component)', |
120 'sources': [ | 120 'sources': [ |
121 'bpf_dsl/bpf_dsl.cc', | 121 'bpf_dsl/bpf_dsl.cc', |
122 'bpf_dsl/bpf_dsl.h', | 122 'bpf_dsl/bpf_dsl.h', |
123 'bpf_dsl/bpf_dsl_forward.h', | 123 'bpf_dsl/bpf_dsl_forward.h', |
124 'bpf_dsl/bpf_dsl_impl.h', | 124 'bpf_dsl/bpf_dsl_impl.h', |
| 125 'bpf_dsl/codegen.cc', |
| 126 'bpf_dsl/codegen.h', |
125 'bpf_dsl/cons.h', | 127 'bpf_dsl/cons.h', |
126 'bpf_dsl/dump_bpf.cc', | 128 'bpf_dsl/dump_bpf.cc', |
127 'bpf_dsl/dump_bpf.h', | 129 'bpf_dsl/dump_bpf.h', |
128 'bpf_dsl/policy.cc', | 130 'bpf_dsl/policy.cc', |
129 'bpf_dsl/policy.h', | 131 'bpf_dsl/policy.h', |
130 'bpf_dsl/policy_compiler.cc', | 132 'bpf_dsl/policy_compiler.cc', |
131 'bpf_dsl/policy_compiler.h', | 133 'bpf_dsl/policy_compiler.h', |
132 'bpf_dsl/trap_registry.h', | 134 'bpf_dsl/trap_registry.h', |
133 'seccomp-bpf/codegen.cc', | |
134 'seccomp-bpf/codegen.h', | |
135 'seccomp-bpf/die.cc', | 135 'seccomp-bpf/die.cc', |
136 'seccomp-bpf/die.h', | 136 'seccomp-bpf/die.h', |
137 'seccomp-bpf/errorcode.cc', | 137 'seccomp-bpf/errorcode.cc', |
138 'seccomp-bpf/errorcode.h', | 138 'seccomp-bpf/errorcode.h', |
139 'seccomp-bpf/linux_seccomp.h', | 139 'seccomp-bpf/linux_seccomp.h', |
140 'seccomp-bpf/sandbox_bpf.cc', | 140 'seccomp-bpf/sandbox_bpf.cc', |
141 'seccomp-bpf/sandbox_bpf.h', | 141 'seccomp-bpf/sandbox_bpf.h', |
142 'seccomp-bpf/syscall.cc', | 142 'seccomp-bpf/syscall.cc', |
143 'seccomp-bpf/syscall.h', | 143 'seccomp-bpf/syscall.h', |
144 'seccomp-bpf/syscall_iterator.cc', | 144 'seccomp-bpf/syscall_iterator.cc', |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 '../../build/isolate.gypi', | 388 '../../build/isolate.gypi', |
389 ], | 389 ], |
390 'sources': [ | 390 'sources': [ |
391 '../sandbox_linux_unittests.isolate', | 391 '../sandbox_linux_unittests.isolate', |
392 ], | 392 ], |
393 }, | 393 }, |
394 ], | 394 ], |
395 }], | 395 }], |
396 ], | 396 ], |
397 } | 397 } |
OLD | NEW |