| 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 'targets': [ | 6 'targets': [ |
| 7 # We have two principal targets: sandbox and sandbox_linux_unittests | 7 # We have two principal targets: sandbox and sandbox_linux_unittests |
| 8 # All other targets are listed as dependencies. | 8 # All other targets are listed as dependencies. |
| 9 # FIXME(jln): for historial reasons, sandbox_linux is the setuid sandbox | 9 # FIXME(jln): for historial reasons, sandbox_linux is the setuid sandbox |
| 10 # and is its own target. | 10 # and is its own target. |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 'seccomp-bpf/basicblock.h', | 70 'seccomp-bpf/basicblock.h', |
| 71 'seccomp-bpf/codegen.cc', | 71 'seccomp-bpf/codegen.cc', |
| 72 'seccomp-bpf/codegen.h', | 72 'seccomp-bpf/codegen.h', |
| 73 'seccomp-bpf/die.cc', | 73 'seccomp-bpf/die.cc', |
| 74 'seccomp-bpf/die.h', | 74 'seccomp-bpf/die.h', |
| 75 'seccomp-bpf/errorcode.cc', | 75 'seccomp-bpf/errorcode.cc', |
| 76 'seccomp-bpf/errorcode.h', | 76 'seccomp-bpf/errorcode.h', |
| 77 'seccomp-bpf/instruction.h', | 77 'seccomp-bpf/instruction.h', |
| 78 'seccomp-bpf/sandbox_bpf.cc', | 78 'seccomp-bpf/sandbox_bpf.cc', |
| 79 'seccomp-bpf/sandbox_bpf.h', | 79 'seccomp-bpf/sandbox_bpf.h', |
| 80 'seccomp-bpf/syscall.cc', |
| 81 'seccomp-bpf/syscall.h', |
| 80 'seccomp-bpf/syscall_iterator.cc', | 82 'seccomp-bpf/syscall_iterator.cc', |
| 81 'seccomp-bpf/syscall_iterator.h', | 83 'seccomp-bpf/syscall_iterator.h', |
| 82 'seccomp-bpf/verifier.cc', | 84 'seccomp-bpf/verifier.cc', |
| 83 'seccomp-bpf/verifier.h', | 85 'seccomp-bpf/verifier.h', |
| 84 ], | 86 ], |
| 85 'dependencies': [ | 87 'dependencies': [ |
| 86 '../base/base.gyp:base', | 88 '../base/base.gyp:base', |
| 87 ], | 89 ], |
| 88 'include_dirs': [ | 90 'include_dirs': [ |
| 89 '../..', | 91 '../..', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 'dependencies': [ | 138 'dependencies': [ |
| 137 '../base/base.gyp:base', | 139 '../base/base.gyp:base', |
| 138 ], | 140 ], |
| 139 'include_dirs': [ | 141 'include_dirs': [ |
| 140 '..', | 142 '..', |
| 141 ], | 143 ], |
| 142 }, | 144 }, |
| 143 | 145 |
| 144 ], | 146 ], |
| 145 } | 147 } |
| OLD | NEW |