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

Unified 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, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/ozone/platform/wayland/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/system.gyp
diff --git a/build/linux/system.gyp b/build/linux/system.gyp
index a325acac044f2b2458bbcc332a5231b713c13266..b49c2b8d98262a6718b39c06a66b42bb1308d5a7 100644
--- a/build/linux/system.gyp
+++ b/build/linux/system.gyp
@@ -592,6 +592,27 @@
},
],
}],
+ ['ozone_platform_wayland==1', {
+ 'targets': [
+ {
+ 'target_name': 'wayland-egl',
+ 'type': 'none',
+ 'direct_dependent_settings': {
+ 'cflags': [
+ '<!@(<(pkg-config) --cflags wayland-egl)',
+ ],
+ },
+ 'link_settings': {
+ 'ldflags': [
+ '<!@(<(pkg-config) --libs-only-L --libs-only-other wayland-egl)',
+ ],
+ 'libraries': [
+ '<!@(<(pkg-config) --libs-only-l wayland-egl)',
+ ],
+ },
+ },
+ ],
+ }],
['use_udev==1', {
'targets': [
{
« 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