| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 'target_name': 'seccomp_bpf', | 128 'target_name': 'seccomp_bpf', |
| 129 'type': '<(component)', | 129 'type': '<(component)', |
| 130 'sources': [ | 130 'sources': [ |
| 131 'bpf_dsl/bpf_dsl.cc', | 131 'bpf_dsl/bpf_dsl.cc', |
| 132 'bpf_dsl/bpf_dsl.h', | 132 'bpf_dsl/bpf_dsl.h', |
| 133 'bpf_dsl/bpf_dsl_forward.h', | 133 'bpf_dsl/bpf_dsl_forward.h', |
| 134 'bpf_dsl/bpf_dsl_impl.h', | 134 'bpf_dsl/bpf_dsl_impl.h', |
| 135 'bpf_dsl/codegen.cc', | 135 'bpf_dsl/codegen.cc', |
| 136 'bpf_dsl/codegen.h', | 136 'bpf_dsl/codegen.h', |
| 137 'bpf_dsl/cons.h', | 137 'bpf_dsl/cons.h', |
| 138 'bpf_dsl/errorcode.cc', | |
| 139 'bpf_dsl/errorcode.h', | 138 'bpf_dsl/errorcode.h', |
| 140 'bpf_dsl/linux_syscall_ranges.h', | 139 'bpf_dsl/linux_syscall_ranges.h', |
| 141 'bpf_dsl/policy.cc', | 140 'bpf_dsl/policy.cc', |
| 142 'bpf_dsl/policy.h', | 141 'bpf_dsl/policy.h', |
| 143 'bpf_dsl/policy_compiler.cc', | 142 'bpf_dsl/policy_compiler.cc', |
| 144 'bpf_dsl/policy_compiler.h', | 143 'bpf_dsl/policy_compiler.h', |
| 145 'bpf_dsl/seccomp_macros.h', | 144 'bpf_dsl/seccomp_macros.h', |
| 146 'bpf_dsl/seccomp_macros.h', | 145 'bpf_dsl/seccomp_macros.h', |
| 147 'bpf_dsl/syscall_set.cc', | 146 'bpf_dsl/syscall_set.cc', |
| 148 'bpf_dsl/syscall_set.h', | 147 'bpf_dsl/syscall_set.h', |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 '../../build/isolate.gypi', | 454 '../../build/isolate.gypi', |
| 456 ], | 455 ], |
| 457 'sources': [ | 456 'sources': [ |
| 458 '../sandbox_linux_unittests.isolate', | 457 '../sandbox_linux_unittests.isolate', |
| 459 ], | 458 ], |
| 460 }, | 459 }, |
| 461 ], | 460 ], |
| 462 }], | 461 }], |
| 463 ], | 462 ], |
| 464 } | 463 } |
| OLD | NEW |