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: build/linux/system.gyp

Issue 1704243003: ozone/platform/wayland: Implement SurfaceOzoneEGL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase, fix scoped_ptr NULL check, make use_wayland_egl default to true Created 4 years, 8 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 | ui/ozone/platform/wayland/BUILD.gn » ('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 # 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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 'ldflags': [ 585 'ldflags': [
586 '<!@(<(pkg-config) --libs-only-L --libs-only-other libdrm)', 586 '<!@(<(pkg-config) --libs-only-L --libs-only-other libdrm)',
587 ], 587 ],
588 'libraries': [ 588 'libraries': [
589 '<!@(<(pkg-config) --libs-only-l libdrm)', 589 '<!@(<(pkg-config) --libs-only-l libdrm)',
590 ], 590 ],
591 }, 591 },
592 }, 592 },
593 ], 593 ],
594 }], 594 }],
595 ['ozone_platform_wayland==1', {
596 'targets': [
597 {
598 'target_name': 'wayland-egl',
599 'type': 'none',
600 'direct_dependent_settings': {
601 'cflags': [
602 '<!@(<(pkg-config) --cflags wayland-egl)',
603 ],
604 },
605 'link_settings': {
606 'ldflags': [
607 '<!@(<(pkg-config) --libs-only-L --libs-only-other wayland-egl)',
608 ],
609 'libraries': [
610 '<!@(<(pkg-config) --libs-only-l wayland-egl)',
611 ],
612 },
613 },
614 ],
615 }],
595 ['use_udev==1', { 616 ['use_udev==1', {
596 'targets': [ 617 'targets': [
597 { 618 {
598 'target_name': 'udev', 619 'target_name': 'udev',
599 'type': 'static_library', 620 'type': 'static_library',
600 'conditions': [ 621 'conditions': [
601 ['_toolset=="target"', { 622 ['_toolset=="target"', {
602 'include_dirs': [ 623 'include_dirs': [
603 '../..', 624 '../..',
604 ], 625 ],
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after
1291 ], 1312 ],
1292 'libraries': [ 1313 'libraries': [
1293 '<!@(<(pkg-config) --libs-only-l libffi)', 1314 '<!@(<(pkg-config) --libs-only-l libffi)',
1294 ], 1315 ],
1295 }, 1316 },
1296 }], 1317 }],
1297 ], 1318 ],
1298 }, 1319 },
1299 ], 1320 ],
1300 } 1321 }
OLDNEW
« no previous file with comments | « no previous file | ui/ozone/platform/wayland/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698