| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 'include_dirs': [ | 151 'include_dirs': [ |
| 152 '../..', | 152 '../..', |
| 153 ], | 153 ], |
| 154 }, | 154 }, |
| 155 { | 155 { |
| 156 'target_name': 'seccomp_bpf_helpers', | 156 'target_name': 'seccomp_bpf_helpers', |
| 157 'type': '<(component)', | 157 'type': '<(component)', |
| 158 'sources': [ | 158 'sources': [ |
| 159 'seccomp-bpf-helpers/baseline_policy.cc', | 159 'seccomp-bpf-helpers/baseline_policy.cc', |
| 160 'seccomp-bpf-helpers/baseline_policy.h', | 160 'seccomp-bpf-helpers/baseline_policy.h', |
| 161 'seccomp-bpf-helpers/bpf_dsl.cc', |
| 162 'seccomp-bpf-helpers/bpf_dsl.h', |
| 161 'seccomp-bpf-helpers/sigsys_handlers.cc', | 163 'seccomp-bpf-helpers/sigsys_handlers.cc', |
| 162 'seccomp-bpf-helpers/sigsys_handlers.h', | 164 'seccomp-bpf-helpers/sigsys_handlers.h', |
| 163 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', | 165 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', |
| 164 'seccomp-bpf-helpers/syscall_parameters_restrictions.h', | 166 'seccomp-bpf-helpers/syscall_parameters_restrictions.h', |
| 165 'seccomp-bpf-helpers/syscall_sets.cc', | 167 'seccomp-bpf-helpers/syscall_sets.cc', |
| 166 'seccomp-bpf-helpers/syscall_sets.h', | 168 'seccomp-bpf-helpers/syscall_sets.h', |
| 167 ], | 169 ], |
| 168 'dependencies': [ | 170 'dependencies': [ |
| 169 '../base/base.gyp:base', | 171 '../base/base.gyp:base', |
| 170 'seccomp_bpf', | 172 'seccomp_bpf', |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 }, | 333 }, |
| 332 'dependencies': [ | 334 'dependencies': [ |
| 333 'sandbox_linux_jni_unittests', | 335 'sandbox_linux_jni_unittests', |
| 334 ], | 336 ], |
| 335 'includes': [ '../../build/apk_test.gypi' ], | 337 'includes': [ '../../build/apk_test.gypi' ], |
| 336 } | 338 } |
| 337 ], | 339 ], |
| 338 }], | 340 }], |
| 339 ], | 341 ], |
| 340 } | 342 } |
| OLD | NEW |