| 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 'sandbox_services_headers', | 124 'sandbox_services_headers', |
| 125 ], | 125 ], |
| 126 'include_dirs': [ | 126 'include_dirs': [ |
| 127 '../..', | 127 '../..', |
| 128 ], | 128 ], |
| 129 }, | 129 }, |
| 130 { | 130 { |
| 131 'target_name': 'seccomp_bpf_helpers', | 131 'target_name': 'seccomp_bpf_helpers', |
| 132 'type': 'static_library', | 132 'type': 'static_library', |
| 133 'sources': [ | 133 'sources': [ |
| 134 'seccomp-bpf-helpers/sigsys_handlers.cc', |
| 135 'seccomp-bpf-helpers/sigsys_handlers.h', |
| 136 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', |
| 137 'seccomp-bpf-helpers/syscall_parameters_restrictions.h', |
| 134 'seccomp-bpf-helpers/syscall_sets.cc', | 138 'seccomp-bpf-helpers/syscall_sets.cc', |
| 135 'seccomp-bpf-helpers/syscall_sets.h', | 139 'seccomp-bpf-helpers/syscall_sets.h', |
| 136 ], | 140 ], |
| 137 'dependencies': [ | 141 'dependencies': [ |
| 138 ], | 142 ], |
| 139 'include_dirs': [ | 143 'include_dirs': [ |
| 140 '../..', | 144 '../..', |
| 141 ], | 145 ], |
| 142 }, | 146 }, |
| 143 { | 147 { |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 }, | 277 }, |
| 274 'dependencies': [ | 278 'dependencies': [ |
| 275 'sandbox_linux_jni_unittests', | 279 'sandbox_linux_jni_unittests', |
| 276 ], | 280 ], |
| 277 'includes': [ '../../build/apk_test.gypi' ], | 281 'includes': [ '../../build/apk_test.gypi' ], |
| 278 } | 282 } |
| 279 ], | 283 ], |
| 280 }], | 284 }], |
| 281 ], | 285 ], |
| 282 } | 286 } |
| OLD | NEW |