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

Side by Side Diff: build/linux/system.gyp

Issue 5043002: A workaround to close currently opened menu. Send escape key if screen locker fails to grab input. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update gyp Created 10 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/screen_locker.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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)"', 9 'pkg-config': './pkg-config-wrapper "<(sysroot)"',
10 }, 10 },
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 'ldflags': [ 259 'ldflags': [
260 '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)', 260 '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)',
261 ], 261 ],
262 'libraries': [ 262 'libraries': [
263 '<!@(<(pkg-config) --libs-only-l xext)', 263 '<!@(<(pkg-config) --libs-only-l xext)',
264 ], 264 ],
265 }, 265 },
266 }]] 266 }]]
267 }, 267 },
268 { 268 {
269 'target_name': 'xtst',
270 'type': 'settings',
271 'conditions': [
272 ['_toolset=="target"', {
273 'direct_dependent_settings': {
274 'cflags': [
275 '<!@(<(pkg-config) --cflags xtst)',
276 ],
277 },
278 'link_settings': {
279 'ldflags': [
280 '<!@(<(pkg-config) --libs-only-L --libs-only-other xtst)',
281 ],
282 'libraries': [
283 '<!@(<(pkg-config) --libs-only-l xtst)',
284 ],
285 },
286 }]]
287 },
288 {
269 'target_name': 'selinux', 289 'target_name': 'selinux',
270 'type': 'settings', 290 'type': 'settings',
271 'conditions': [ 291 'conditions': [
272 ['_toolset=="target"', { 292 ['_toolset=="target"', {
273 'link_settings': { 293 'link_settings': {
274 'libraries': [ 294 'libraries': [
275 '-lselinux', 295 '-lselinux',
276 ], 296 ],
277 }, 297 },
278 }]] 298 }]]
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 ], 386 ],
367 }, 387 },
368 ], 388 ],
369 } 389 }
370 390
371 # Local Variables: 391 # Local Variables:
372 # tab-width:2 392 # tab-width:2
373 # indent-tabs-mode:nil 393 # indent-tabs-mode:nil
374 # End: 394 # End:
375 # vim: set expandtab tabstop=2 shiftwidth=2: 395 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/screen_locker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698