OLD | NEW |
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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 ], | 186 ], |
187 'libraries': [ | 187 'libraries': [ |
188 '<!@(<(pkg-config) --libs-only-l gtk+-unix-print-2.0)', | 188 '<!@(<(pkg-config) --libs-only-l gtk+-unix-print-2.0)', |
189 ], | 189 ], |
190 }, | 190 }, |
191 }], | 191 }], |
192 ], | 192 ], |
193 }, | 193 }, |
194 ], # targets | 194 ], # targets |
195 }], | 195 }], |
196 [ 'use_x11==1 or ozone_platform_ozonex==1', { | 196 [ 'use_x11==1', { |
197 # Hide X11 and related dependencies when use_x11=0 | 197 # Hide X11 and related dependencies when use_x11=0 |
198 'targets': [ | 198 'targets': [ |
199 { | 199 { |
200 'target_name': 'x11', | 200 'target_name': 'x11', |
201 'type': 'none', | 201 'type': 'none', |
202 'toolsets': ['host', 'target'], | 202 'toolsets': ['host', 'target'], |
203 'conditions': [ | 203 'conditions': [ |
204 ['_toolset=="target"', { | 204 ['_toolset=="target"', { |
205 'direct_dependent_settings': { | 205 'direct_dependent_settings': { |
206 'cflags': [ | 206 'cflags': [ |
(...skipping 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1293 ], | 1293 ], |
1294 'libraries': [ | 1294 'libraries': [ |
1295 '<!@(<(pkg-config) --libs-only-l libffi)', | 1295 '<!@(<(pkg-config) --libs-only-l libffi)', |
1296 ], | 1296 ], |
1297 }, | 1297 }, |
1298 }], | 1298 }], |
1299 ], | 1299 ], |
1300 }, | 1300 }, |
1301 ], | 1301 ], |
1302 } | 1302 } |
OLD | NEW |