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

Unified Diff: build/linux/system.gyp

Issue 7457023: Adding a Wayland basic toolkit (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Formatting and moved library deps to system.gyp Created 9 years, 5 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/wayland/events/wayland_event.h » ('j') | ui/wayland/wayland.gyp » ('J')
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 b7f09e4c1e45bef59d8904872f109d60fc0a9b48..e87e1a7e33a52f99f0189bf3894bbebf19951309 100644
--- a/build/linux/system.gyp
+++ b/build/linux/system.gyp
@@ -463,5 +463,29 @@
}],
],
},
+ {
+ 'target_name': 'wayland',
+ 'type': 'settings',
+ 'conditions': [
+ ['use_wayland == 1', {
+ 'cflags': [
+ '<!@(<(pkg-config) --cflags cairo wayland-client wayland-egl xkbcommon)',
tfarina 2011/07/26 16:14:41 I think wayland-client and the others will be need
+ ],
+ 'direct_dependent_settings': {
+ 'cflags': [
+ '<!@(<(pkg-config) --cflags cairo wayland-client wayland-egl xkbcommon)',
+ ],
+ },
+ 'link_settings': {
+ 'ldflags': [
+ '<!@(<(pkg-config) --libs-only-L --libs-only-other wayland-client wayland-egl xkbcommon)',
+ ],
+ 'libraries': [
+ '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcommon)',
+ ],
+ },
+ }],
+ ],
+ },
],
}
« no previous file with comments | « no previous file | ui/wayland/events/wayland_event.h » ('j') | ui/wayland/wayland.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698