| 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', |
| 163 'seccomp-bpf-helpers/cons.h', |
| 161 'seccomp-bpf-helpers/sigsys_handlers.cc', | 164 'seccomp-bpf-helpers/sigsys_handlers.cc', |
| 162 'seccomp-bpf-helpers/sigsys_handlers.h', | 165 'seccomp-bpf-helpers/sigsys_handlers.h', |
| 163 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', | 166 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', |
| 164 'seccomp-bpf-helpers/syscall_parameters_restrictions.h', | 167 'seccomp-bpf-helpers/syscall_parameters_restrictions.h', |
| 165 'seccomp-bpf-helpers/syscall_sets.cc', | 168 'seccomp-bpf-helpers/syscall_sets.cc', |
| 166 'seccomp-bpf-helpers/syscall_sets.h', | 169 'seccomp-bpf-helpers/syscall_sets.h', |
| 167 ], | 170 ], |
| 168 'dependencies': [ | 171 'dependencies': [ |
| 169 '../base/base.gyp:base', | 172 '../base/base.gyp:base', |
| 170 'seccomp_bpf', | 173 'seccomp_bpf', |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 '../sandbox_linux_unittests.isolate', | 360 '../sandbox_linux_unittests.isolate', |
| 358 ], | 361 ], |
| 359 'sources': [ | 362 'sources': [ |
| 360 '../sandbox_linux_unittests.isolate', | 363 '../sandbox_linux_unittests.isolate', |
| 361 ], | 364 ], |
| 362 }, | 365 }, |
| 363 ], | 366 ], |
| 364 }], | 367 }], |
| 365 ], | 368 ], |
| 366 } | 369 } |
| OLD | NEW |