| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 'bpf_dsl/bpf_dsl_impl.h', | 124 'bpf_dsl/bpf_dsl_impl.h', |
| 125 'bpf_dsl/codegen.cc', | 125 'bpf_dsl/codegen.cc', |
| 126 'bpf_dsl/codegen.h', | 126 'bpf_dsl/codegen.h', |
| 127 'bpf_dsl/cons.h', | 127 'bpf_dsl/cons.h', |
| 128 'bpf_dsl/dump_bpf.cc', | 128 'bpf_dsl/dump_bpf.cc', |
| 129 'bpf_dsl/dump_bpf.h', | 129 'bpf_dsl/dump_bpf.h', |
| 130 'bpf_dsl/policy.cc', | 130 'bpf_dsl/policy.cc', |
| 131 'bpf_dsl/policy.h', | 131 'bpf_dsl/policy.h', |
| 132 'bpf_dsl/policy_compiler.cc', | 132 'bpf_dsl/policy_compiler.cc', |
| 133 'bpf_dsl/policy_compiler.h', | 133 'bpf_dsl/policy_compiler.h', |
| 134 'bpf_dsl/syscall_set.cc', |
| 135 'bpf_dsl/syscall_set.h', |
| 134 'bpf_dsl/trap_registry.h', | 136 'bpf_dsl/trap_registry.h', |
| 135 'seccomp-bpf/die.cc', | 137 'seccomp-bpf/die.cc', |
| 136 'seccomp-bpf/die.h', | 138 'seccomp-bpf/die.h', |
| 137 'seccomp-bpf/errorcode.cc', | 139 'seccomp-bpf/errorcode.cc', |
| 138 'seccomp-bpf/errorcode.h', | 140 'seccomp-bpf/errorcode.h', |
| 139 'seccomp-bpf/linux_seccomp.h', | 141 'seccomp-bpf/linux_seccomp.h', |
| 140 'seccomp-bpf/sandbox_bpf.cc', | 142 'seccomp-bpf/sandbox_bpf.cc', |
| 141 'seccomp-bpf/sandbox_bpf.h', | 143 'seccomp-bpf/sandbox_bpf.h', |
| 142 'seccomp-bpf/syscall.cc', | 144 'seccomp-bpf/syscall.cc', |
| 143 'seccomp-bpf/syscall.h', | 145 'seccomp-bpf/syscall.h', |
| 144 'seccomp-bpf/syscall_iterator.cc', | |
| 145 'seccomp-bpf/syscall_iterator.h', | |
| 146 'seccomp-bpf/trap.cc', | 146 'seccomp-bpf/trap.cc', |
| 147 'seccomp-bpf/trap.h', | 147 'seccomp-bpf/trap.h', |
| 148 'seccomp-bpf/verifier.cc', | 148 'seccomp-bpf/verifier.cc', |
| 149 'seccomp-bpf/verifier.h', | 149 'seccomp-bpf/verifier.h', |
| 150 ], | 150 ], |
| 151 'dependencies': [ | 151 'dependencies': [ |
| 152 '../base/base.gyp:base', | 152 '../base/base.gyp:base', |
| 153 'sandbox_services', | 153 'sandbox_services', |
| 154 'sandbox_services_headers', | 154 'sandbox_services_headers', |
| 155 ], | 155 ], |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 '../../build/isolate.gypi', | 390 '../../build/isolate.gypi', |
| 391 ], | 391 ], |
| 392 'sources': [ | 392 'sources': [ |
| 393 '../sandbox_linux_unittests.isolate', | 393 '../sandbox_linux_unittests.isolate', |
| 394 ], | 394 ], |
| 395 }, | 395 }, |
| 396 ], | 396 ], |
| 397 }], | 397 }], |
| 398 ], | 398 ], |
| 399 } | 399 } |
| OLD | NEW |