| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 'seccomp-bpf/verifier.cc', | 144 'seccomp-bpf/verifier.cc', |
| 145 'seccomp-bpf/verifier.h', | 145 'seccomp-bpf/verifier.h', |
| 146 ], | 146 ], |
| 147 'dependencies': [ | 147 'dependencies': [ |
| 148 '../base/base.gyp:base', | 148 '../base/base.gyp:base', |
| 149 'sandbox_services_headers', | 149 'sandbox_services_headers', |
| 150 ], | 150 ], |
| 151 'defines': [ | 151 'defines': [ |
| 152 'SANDBOX_IMPLEMENTATION', | 152 'SANDBOX_IMPLEMENTATION', |
| 153 ], | 153 ], |
| 154 'includes': [ |
| 155 # Disable LTO due to compiler bug |
| 156 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57703 |
| 157 '../../build/android/disable_lto.gypi', |
| 158 ], |
| 154 'include_dirs': [ | 159 'include_dirs': [ |
| 155 '../..', | 160 '../..', |
| 156 ], | 161 ], |
| 157 }, | 162 }, |
| 158 { | 163 { |
| 159 'target_name': 'seccomp_bpf_helpers', | 164 'target_name': 'seccomp_bpf_helpers', |
| 160 'type': '<(component)', | 165 'type': '<(component)', |
| 161 'sources': [ | 166 'sources': [ |
| 162 'seccomp-bpf-helpers/baseline_policy.cc', | 167 'seccomp-bpf-helpers/baseline_policy.cc', |
| 163 'seccomp-bpf-helpers/baseline_policy.h', | 168 'seccomp-bpf-helpers/baseline_policy.h', |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 '../../build/isolate.gypi', | 346 '../../build/isolate.gypi', |
| 342 ], | 347 ], |
| 343 'sources': [ | 348 'sources': [ |
| 344 '../sandbox_linux_unittests.isolate', | 349 '../sandbox_linux_unittests.isolate', |
| 345 ], | 350 ], |
| 346 }, | 351 }, |
| 347 ], | 352 ], |
| 348 }], | 353 }], |
| 349 ], | 354 ], |
| 350 } | 355 } |
| OLD | NEW |