Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(820)

Side by Side Diff: sandbox/linux/sandbox_linux.gypi

Issue 646873004: Add Link-Time Optimizations support for Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comment Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gpu/gpu.gyp ('k') | skia/skia.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « gpu/gpu.gyp ('k') | skia/skia.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698