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

Unified Diff: build/linux/system.gyp

Issue 9773024: This patch implements Chromium's Aura gesture recognizer in terms of utouch-grail and utouch-frame … (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 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
Index: build/linux/system.gyp
===================================================================
--- build/linux/system.gyp (revision 126124)
+++ build/linux/system.gyp (working copy)
@@ -91,6 +91,48 @@
],
},
{
+ 'target_name': 'frame',
sadrul 2012/04/03 19:52:01 Let's use 'utouch_frame' instead. 'frame' by itsel
+ 'type': 'none',
+ 'conditions': [
+ ['_toolset=="target"', {
+ 'direct_dependent_settings': {
+ 'cflags': [
+ '<!@(<(pkg-config) --cflags utouch-frame)',
+ ],
+ },
+ 'link_settings': {
+ 'ldflags': [
+ '<!@(<(pkg-config) --libs-only-L --libs-only-other utouch-frame)',
+ ],
+ 'libraries': [
+ '<!@(<(pkg-config) --libs-only-l utouch-frame)',
+ ],
+ },
+ }],
+ ],
+ },
+ {
+ 'target_name': 'grail',
+ 'type': 'none',
+ 'conditions': [
+ ['_toolset=="target"', {
+ 'direct_dependent_settings': {
+ 'cflags': [
+ '<!@(<(pkg-config) --cflags utouch-grail)',
+ ],
+ },
+ 'link_settings': {
+ 'ldflags': [
+ '<!@(<(pkg-config) --libs-only-L --libs-only-other utouch-grail)',
+ ],
+ 'libraries': [
+ '<!@(<(pkg-config) --libs-only-l utouch-grail)',
+ ],
+ },
+ }],
+ ],
+ },
+ {
'target_name': 'ssl',
'type': 'none',
'conditions': [

Powered by Google App Engine
This is Rietveld 408576698