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

Side by Side 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, 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
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 'conditions': [ 6 'conditions': [
7 ['sysroot!=""', { 7 ['sysroot!=""', {
8 'variables': { 8 'variables': {
9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', 9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"',
10 }, 10 },
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 '<!@(<(pkg-config) --libs-only-L --libs-only-other gtk+-unix-print -2.0)', 84 '<!@(<(pkg-config) --libs-only-L --libs-only-other gtk+-unix-print -2.0)',
85 ], 85 ],
86 'libraries': [ 86 'libraries': [
87 '<!@(<(pkg-config) --libs-only-l gtk+-unix-print-2.0)', 87 '<!@(<(pkg-config) --libs-only-l gtk+-unix-print-2.0)',
88 ], 88 ],
89 }, 89 },
90 }], 90 }],
91 ], 91 ],
92 }, 92 },
93 { 93 {
94 'target_name': 'frame',
sadrul 2012/04/03 19:52:01 Let's use 'utouch_frame' instead. 'frame' by itsel
95 'type': 'none',
96 'conditions': [
97 ['_toolset=="target"', {
98 'direct_dependent_settings': {
99 'cflags': [
100 '<!@(<(pkg-config) --cflags utouch-frame)',
101 ],
102 },
103 'link_settings': {
104 'ldflags': [
105 '<!@(<(pkg-config) --libs-only-L --libs-only-other utouch-frame)',
106 ],
107 'libraries': [
108 '<!@(<(pkg-config) --libs-only-l utouch-frame)',
109 ],
110 },
111 }],
112 ],
113 },
114 {
115 'target_name': 'grail',
116 'type': 'none',
117 'conditions': [
118 ['_toolset=="target"', {
119 'direct_dependent_settings': {
120 'cflags': [
121 '<!@(<(pkg-config) --cflags utouch-grail)',
122 ],
123 },
124 'link_settings': {
125 'ldflags': [
126 '<!@(<(pkg-config) --libs-only-L --libs-only-other utouch-grail)',
127 ],
128 'libraries': [
129 '<!@(<(pkg-config) --libs-only-l utouch-grail)',
130 ],
131 },
132 }],
133 ],
134 },
135 {
94 'target_name': 'ssl', 136 'target_name': 'ssl',
95 'type': 'none', 137 'type': 'none',
96 'conditions': [ 138 'conditions': [
97 ['_toolset=="target"', { 139 ['_toolset=="target"', {
98 'conditions': [ 140 'conditions': [
99 ['use_openssl==1', { 141 ['use_openssl==1', {
100 'dependencies': [ 142 'dependencies': [
101 '../../third_party/openssl/openssl.gyp:openssl', 143 '../../third_party/openssl/openssl.gyp:openssl',
102 ], 144 ],
103 }], 145 }],
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 ], 684 ],
643 'libraries': [ 685 'libraries': [
644 '<!@(<(pkg-config) --libs-only-l libudev)', 686 '<!@(<(pkg-config) --libs-only-l libudev)',
645 ], 687 ],
646 }, 688 },
647 }], 689 }],
648 ], 690 ],
649 }, 691 },
650 ], 692 ],
651 } 693 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698