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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 'libraries': [ | 408 'libraries': [ |
409 '<!@(<(pkg-config) --libs-only-l gnome-keyring-1)', | 409 '<!@(<(pkg-config) --libs-only-l gnome-keyring-1)', |
410 ], | 410 ], |
411 }, | 411 }, |
412 }], | 412 }], |
413 ], | 413 ], |
414 }, | 414 }, |
415 { | 415 { |
416 'target_name': 'libbrlapi', | 416 'target_name': 'libbrlapi', |
417 'type': 'static_library', | 417 'type': 'static_library', |
418 'dependencies': [ | |
419 '../../base/base.gyp:base', | |
420 ], | |
421 'all_dependent_settings': { | 418 'all_dependent_settings': { |
422 'include_dirs': [ | 419 'include_dirs': [ |
423 '<(SHARED_INTERMEDIATE_DIR)', | 420 '<(SHARED_INTERMEDIATE_DIR)', |
424 ], | 421 ], |
425 'defines': [ | 422 'defines': [ |
426 'USE_BRLAPI', | 423 'USE_BRLAPI', |
427 ], | 424 ], |
428 'conditions': [ | 425 'conditions': [ |
429 ['linux_link_libbrlapi==1', { | 426 ['linux_link_libbrlapi==1', { |
430 'link_settings': { | 427 'link_settings': { |
431 'libraries': [ | 428 'libraries': [ |
432 '-lbrlapi', | 429 '-lbrlapi', |
433 ], | 430 ], |
434 } | 431 } |
435 }], | 432 }], |
436 ], | 433 ], |
437 }, | 434 }, |
| 435 'include_dirs': [ |
| 436 '../..', |
| 437 ], |
438 'hard_dependency': 1, | 438 'hard_dependency': 1, |
439 'actions': [ | 439 'actions': [ |
440 { | 440 { |
441 'variables': { | 441 'variables': { |
442 'output_h': '<(SHARED_INTERMEDIATE_DIR)/library_loaders/libbrlapi.h'
, | 442 'output_h': '<(SHARED_INTERMEDIATE_DIR)/library_loaders/libbrlapi.h'
, |
443 'output_cc': '<(INTERMEDIATE_DIR)/libbrlapi_loader.cc', | 443 'output_cc': '<(INTERMEDIATE_DIR)/libbrlapi_loader.cc', |
444 'generator': '../../tools/generate_library_loader/generate_library_l
oader.py', | 444 'generator': '../../tools/generate_library_loader/generate_library_l
oader.py', |
445 }, | 445 }, |
446 'action_name': 'generate_brlapi_loader', | 446 'action_name': 'generate_brlapi_loader', |
447 'inputs': [ | 447 'inputs': [ |
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
887 ], | 887 ], |
888 'libraries': [ | 888 'libraries': [ |
889 '<!@(pkg-config --libs-only-l xrandr)', | 889 '<!@(pkg-config --libs-only-l xrandr)', |
890 ], | 890 ], |
891 }, | 891 }, |
892 }], | 892 }], |
893 ], | 893 ], |
894 }, | 894 }, |
895 ], | 895 ], |
896 } | 896 } |
OLD | NEW |