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

Side by Side Diff: build/linux/system.gyp

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
« no previous file with comments | « no previous file | cc/resources/resource_provider.cc » ('j') | cc/resources/resource_provider.cc » ('J')
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 ['sysroot!=""', { 8 ['sysroot!=""', {
9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)" "<(system_libdir)"', 9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)" "<(system_libdir)"',
10 }, { 10 }, {
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 'ldflags': [ 525 'ldflags': [
526 '<!@(<(pkg-config) --libs-only-L --libs-only-other gbm)', 526 '<!@(<(pkg-config) --libs-only-L --libs-only-other gbm)',
527 ], 527 ],
528 'libraries': [ 528 'libraries': [
529 '<!@(<(pkg-config) --libs-only-l gbm)', 529 '<!@(<(pkg-config) --libs-only-l gbm)',
530 ], 530 ],
531 }, 531 },
532 }, 532 },
533 ], 533 ],
534 }], 534 }],
535 ['use_ozone==1', {
vignatti (out of this project) 2015/05/14 19:20:04 vgem only makes sense now under gbm, so you want t
dshwang 2015/06/25 10:59:56 indeed, but spang don't want to leak use_platform_
536 'targets': [
537 {
538 'target_name': 'drmheader',
539 'type': 'none',
540 'direct_dependent_settings': {
541 'cflags': [
542 '<!@(<(pkg-config) --cflags libdrm)',
543 ],
544 },
545 },
546 ],
547 }],
535 ['ozone_platform_dri==1 or ozone_platform_drm==1 or ozone_platform_gbm==1', { 548 ['ozone_platform_dri==1 or ozone_platform_drm==1 or ozone_platform_gbm==1', {
536 'targets': [ 549 'targets': [
537 { 550 {
538 'target_name': 'libdrm', 551 'target_name': 'libdrm',
539 'type': 'none', 552 'type': 'none',
540 'direct_dependent_settings': { 553 'direct_dependent_settings': {
541 'cflags': [ 554 'cflags': [
542 '<!@(<(pkg-config) --cflags libdrm)', 555 '<!@(<(pkg-config) --cflags libdrm)',
543 ], 556 ],
544 }, 557 },
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
1221 }, 1234 },
1222 }], 1235 }],
1223 ], 1236 ],
1224 }], 1237 }],
1225 ] 1238 ]
1226 }], 1239 }],
1227 ], 1240 ],
1228 }, 1241 },
1229 ], 1242 ],
1230 } 1243 }
OLDNEW
« no previous file with comments | « no previous file | cc/resources/resource_provider.cc » ('j') | cc/resources/resource_provider.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698