| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 'sources': [ | 51 'sources': [ |
| 52 'seccomp-bpf/sandbox_bpf_unittest.cc', | 52 'seccomp-bpf/sandbox_bpf_unittest.cc', |
| 53 ], | 53 ], |
| 54 }], | 54 }], |
| 55 ], | 55 ], |
| 56 }, | 56 }, |
| 57 { | 57 { |
| 58 'target_name': 'seccomp_bpf', | 58 'target_name': 'seccomp_bpf', |
| 59 'type': 'static_library', | 59 'type': 'static_library', |
| 60 'sources': [ | 60 'sources': [ |
| 61 'seccomp-bpf/errorcode.cc', |
| 62 'seccomp-bpf/errorcode.h', |
| 61 'seccomp-bpf/sandbox_bpf.cc', | 63 'seccomp-bpf/sandbox_bpf.cc', |
| 62 'seccomp-bpf/sandbox_bpf.h', | 64 'seccomp-bpf/sandbox_bpf.h', |
| 63 'seccomp-bpf/verifier.cc', | 65 'seccomp-bpf/verifier.cc', |
| 64 'seccomp-bpf/verifier.h', | 66 'seccomp-bpf/verifier.h', |
| 65 ], | 67 ], |
| 66 'dependencies': [ | 68 'dependencies': [ |
| 67 '../base/base.gyp:base', | 69 '../base/base.gyp:base', |
| 68 ], | 70 ], |
| 69 'include_dirs': [ | 71 'include_dirs': [ |
| 70 '../..', | 72 '../..', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 'dependencies': [ | 119 'dependencies': [ |
| 118 '../base/base.gyp:base', | 120 '../base/base.gyp:base', |
| 119 ], | 121 ], |
| 120 'include_dirs': [ | 122 'include_dirs': [ |
| 121 '..', | 123 '..', |
| 122 ], | 124 ], |
| 123 }, | 125 }, |
| 124 | 126 |
| 125 ], | 127 ], |
| 126 } | 128 } |
| OLD | NEW |