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

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

Issue 1134993003: ozone: Implement zero/one-copy texture for Ozone GBM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase to ToT Created 5 years, 5 months 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
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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 '../base/base.gyp:base', 194 '../base/base.gyp:base',
195 'sandbox_services', 195 'sandbox_services',
196 'seccomp_bpf', 196 'seccomp_bpf',
197 ], 197 ],
198 'defines': [ 198 'defines': [
199 'SANDBOX_IMPLEMENTATION', 199 'SANDBOX_IMPLEMENTATION',
200 ], 200 ],
201 'include_dirs': [ 201 'include_dirs': [
202 '../..', 202 '../..',
203 ], 203 ],
204 'conditions': [
205 ['use_ozone==1', {
206 'dependencies': [
207 '../build/linux/system.gyp:drmheader',
208 ],
209 }],
210 ],
204 }, 211 },
205 { 212 {
206 # The setuid sandbox, for Linux 213 # The setuid sandbox, for Linux
207 'target_name': 'chrome_sandbox', 214 'target_name': 'chrome_sandbox',
208 'type': 'executable', 215 'type': 'executable',
209 'sources': [ 216 'sources': [
210 'suid/common/sandbox.h', 217 'suid/common/sandbox.h',
211 'suid/common/suid_unsafe_environment_variables.h', 218 'suid/common/suid_unsafe_environment_variables.h',
212 'suid/process_util.h', 219 'suid/process_util.h',
213 'suid/process_util_linux.c', 220 'suid/process_util_linux.c',
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 '../../build/isolate.gypi', 414 '../../build/isolate.gypi',
408 ], 415 ],
409 'sources': [ 416 'sources': [
410 '../sandbox_linux_unittests.isolate', 417 '../sandbox_linux_unittests.isolate',
411 ], 418 ],
412 }, 419 },
413 ], 420 ],
414 }], 421 }],
415 ], 422 ],
416 } 423 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698