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

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: not-leak USE_OZONE_GBM, GetSupportedGpuMemoryBufferConfigurations from ozone, return handle Created 5 years, 7 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 '../base/base.gyp:base', 184 '../base/base.gyp:base',
185 'sandbox_services', 185 'sandbox_services',
186 'seccomp_bpf', 186 'seccomp_bpf',
187 ], 187 ],
188 'defines': [ 188 'defines': [
189 'SANDBOX_IMPLEMENTATION', 189 'SANDBOX_IMPLEMENTATION',
190 ], 190 ],
191 'include_dirs': [ 191 'include_dirs': [
192 '../..', 192 '../..',
193 ], 193 ],
194 'conditions': [
195 ['use_ozone==1', {
196 'dependencies': [
197 '../build/linux/system.gyp:drmheader',
198 ],
199 }],
200 ],
194 }, 201 },
195 { 202 {
196 # The setuid sandbox, for Linux 203 # The setuid sandbox, for Linux
197 'target_name': 'chrome_sandbox', 204 'target_name': 'chrome_sandbox',
198 'type': 'executable', 205 'type': 'executable',
199 'sources': [ 206 'sources': [
200 'suid/common/sandbox.h', 207 'suid/common/sandbox.h',
201 'suid/common/suid_unsafe_environment_variables.h', 208 'suid/common/suid_unsafe_environment_variables.h',
202 'suid/process_util.h', 209 'suid/process_util.h',
203 'suid/process_util_linux.c', 210 'suid/process_util_linux.c',
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 '../../build/isolate.gypi', 403 '../../build/isolate.gypi',
397 ], 404 ],
398 'sources': [ 405 'sources': [
399 '../sandbox_linux_unittests.isolate', 406 '../sandbox_linux_unittests.isolate',
400 ], 407 ],
401 }, 408 },
402 ], 409 ],
403 }], 410 }],
404 ], 411 ],
405 } 412 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698