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

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

Issue 1253363004: ozone gbm: whitelist 3 DRM ioctl code for native GpuMemoryBuffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: define use_vgem_map in single place Created 5 years, 3 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 # If any of the linux_link_FOO below are set to 1, then the corresponding 7 # If any of the linux_link_FOO below are set to 1, then the corresponding
8 # target will be linked against the FOO library (either dynamically or 8 # target will be linked against the FOO library (either dynamically or
9 # statically, depending on the pkg-config files), as opposed to loading the 9 # statically, depending on the pkg-config files), as opposed to loading the
10 # FOO library dynamically with dlopen. 10 # FOO library dynamically with dlopen.
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 'ldflags': [ 496 'ldflags': [
497 '<!@(<(pkg-config) --libs-only-L --libs-only-other xkbcommon)', 497 '<!@(<(pkg-config) --libs-only-L --libs-only-other xkbcommon)',
498 ], 498 ],
499 'libraries': [ 499 'libraries': [
500 '<!@(<(pkg-config) --libs-only-l xkbcommon)', 500 '<!@(<(pkg-config) --libs-only-l xkbcommon)',
501 ], 501 ],
502 }, 502 },
503 }, 503 },
504 ], 504 ],
505 }], 505 }],
506 ['use_vgem_map==1', {
507 'targets': [
508 {
509 'target_name': 'vgem_map',
510 'type': 'none',
511 'direct_dependent_settings': {
512 'defines': [
513 'USE_VGEM_MAP',
514 ],
515 },
516 },
517 ],
518 }],
506 ['ozone_platform_gbm==1', { 519 ['ozone_platform_gbm==1', {
507 'targets': [ 520 'targets': [
508 { 521 {
509 'target_name': 'gbm', 522 'target_name': 'gbm',
510 'type': 'none', 523 'type': 'none',
511 'direct_dependent_settings': { 524 'direct_dependent_settings': {
512 'cflags': [ 525 'cflags': [
513 '<!@(<(pkg-config) --cflags gbm)', 526 '<!@(<(pkg-config) --cflags gbm)',
514 ], 527 ],
515 }, 528 },
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after
1216 }, 1229 },
1217 }], 1230 }],
1218 ], 1231 ],
1219 }], 1232 }],
1220 ] 1233 ]
1221 }], 1234 }],
1222 ], 1235 ],
1223 }, 1236 },
1224 ], 1237 ],
1225 } 1238 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698