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 'conditions': [ | 7 'conditions': [ |
8 ['sysroot!=""', { | 8 ['sysroot!=""', { |
9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', | 9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', |
10 }, { | 10 }, { |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
470 'brlapi__leaveTtyMode', | 470 'brlapi__leaveTtyMode', |
471 'brlapi__writeDots', | 471 'brlapi__writeDots', |
472 'brlapi__readKey', | 472 'brlapi__readKey', |
473 ], | 473 ], |
474 'message': 'Generating libbrlapi library loader.', | 474 'message': 'Generating libbrlapi library loader.', |
475 'process_outputs_as_sources': 1, | 475 'process_outputs_as_sources': 1, |
476 }, | 476 }, |
477 ], | 477 ], |
478 }, | 478 }, |
479 { | 479 { |
| 480 'target_name': 'libcap', |
| 481 'type': 'none', |
| 482 'link_settings': { |
| 483 'libraries': [ |
| 484 '-lcap', |
| 485 ], |
| 486 }, |
| 487 }, |
| 488 { |
480 'target_name': 'libgcrypt', | 489 'target_name': 'libgcrypt', |
481 'type': 'none', | 490 'type': 'none', |
482 'conditions': [ | 491 'conditions': [ |
483 ['_toolset=="target" and use_cups==1', { | 492 ['_toolset=="target" and use_cups==1', { |
484 'direct_dependent_settings': { | 493 'direct_dependent_settings': { |
485 'cflags': [ | 494 'cflags': [ |
486 '<!@(libgcrypt-config --cflags)', | 495 '<!@(libgcrypt-config --cflags)', |
487 ], | 496 ], |
488 }, | 497 }, |
489 'link_settings': { | 498 'link_settings': { |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
878 ], | 887 ], |
879 'libraries': [ | 888 'libraries': [ |
880 '<!@(pkg-config --libs-only-l xrandr)', | 889 '<!@(pkg-config --libs-only-l xrandr)', |
881 ], | 890 ], |
882 }, | 891 }, |
883 }], | 892 }], |
884 ], | 893 ], |
885 }, | 894 }, |
886 ], | 895 ], |
887 } | 896 } |
OLD | NEW |