| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 'include_dirs': [ | 113 'include_dirs': [ |
| 114 '../..', | 114 '../..', |
| 115 ], | 115 ], |
| 116 }, | 116 }, |
| 117 { | 117 { |
| 118 'target_name': 'seccomp_bpf_helpers', | 118 'target_name': 'seccomp_bpf_helpers', |
| 119 'type': 'static_library', | 119 'type': 'static_library', |
| 120 'sources': [ | 120 'sources': [ |
| 121 'seccomp-bpf-helpers/baseline_policy.cc', | 121 'seccomp-bpf-helpers/baseline_policy.cc', |
| 122 'seccomp-bpf-helpers/baseline_policy.h', | 122 'seccomp-bpf-helpers/baseline_policy.h', |
| 123 'seccomp-bpf-helpers/baseline_policy_android.cc', |
| 124 'seccomp-bpf-helpers/baseline_policy_android.h', |
| 123 'seccomp-bpf-helpers/sigsys_handlers.cc', | 125 'seccomp-bpf-helpers/sigsys_handlers.cc', |
| 124 'seccomp-bpf-helpers/sigsys_handlers.h', | 126 'seccomp-bpf-helpers/sigsys_handlers.h', |
| 125 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', | 127 'seccomp-bpf-helpers/syscall_parameters_restrictions.cc', |
| 126 'seccomp-bpf-helpers/syscall_parameters_restrictions.h', | 128 'seccomp-bpf-helpers/syscall_parameters_restrictions.h', |
| 127 'seccomp-bpf-helpers/syscall_sets.cc', | 129 'seccomp-bpf-helpers/syscall_sets.cc', |
| 128 'seccomp-bpf-helpers/syscall_sets.h', | 130 'seccomp-bpf-helpers/syscall_sets.h', |
| 129 ], | 131 ], |
| 130 'dependencies': [ | 132 'dependencies': [ |
| 131 ], | 133 ], |
| 132 'include_dirs': [ | 134 'include_dirs': [ |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 }, | 285 }, |
| 284 'dependencies': [ | 286 'dependencies': [ |
| 285 'sandbox_linux_jni_unittests', | 287 'sandbox_linux_jni_unittests', |
| 286 ], | 288 ], |
| 287 'includes': [ '../../build/apk_test.gypi' ], | 289 'includes': [ '../../build/apk_test.gypi' ], |
| 288 } | 290 } |
| 289 ], | 291 ], |
| 290 }], | 292 }], |
| 291 ], | 293 ], |
| 292 } | 294 } |
| OLD | NEW |