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