| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 '../base/base.gyp:base', | 164 '../base/base.gyp:base', |
| 165 'sandbox_services', | 165 'sandbox_services', |
| 166 'sandbox_services_headers', | 166 'sandbox_services_headers', |
| 167 ], | 167 ], |
| 168 'defines': [ | 168 'defines': [ |
| 169 'SANDBOX_IMPLEMENTATION', | 169 'SANDBOX_IMPLEMENTATION', |
| 170 ], | 170 ], |
| 171 'includes': [ | 171 'includes': [ |
| 172 # Disable LTO due to compiler bug | 172 # Disable LTO due to compiler bug |
| 173 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57703 | 173 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57703 |
| 174 '../../build/android/disable_lto.gypi', | 174 '../../build/android/disable_gcc_lto.gypi', |
| 175 ], | 175 ], |
| 176 'include_dirs': [ | 176 'include_dirs': [ |
| 177 '../..', | 177 '../..', |
| 178 ], | 178 ], |
| 179 }, | 179 }, |
| 180 { | 180 { |
| 181 'target_name': 'seccomp_bpf_helpers', | 181 'target_name': 'seccomp_bpf_helpers', |
| 182 'type': '<(component)', | 182 'type': '<(component)', |
| 183 'sources': [ | 183 'sources': [ |
| 184 'seccomp-bpf-helpers/baseline_policy.cc', | 184 'seccomp-bpf-helpers/baseline_policy.cc', |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 '../../build/isolate.gypi', | 408 '../../build/isolate.gypi', |
| 409 ], | 409 ], |
| 410 'sources': [ | 410 'sources': [ |
| 411 '../sandbox_linux_unittests.isolate', | 411 '../sandbox_linux_unittests.isolate', |
| 412 ], | 412 ], |
| 413 }, | 413 }, |
| 414 ], | 414 ], |
| 415 }], | 415 }], |
| 416 ], | 416 ], |
| 417 } | 417 } |
| OLD | NEW |