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': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target
_arch)" "<(system_libdir)"', | 9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target
_arch)" "<(system_libdir)"', |
10 }, { | 10 }, { |
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 'ldflags': [ | 420 'ldflags': [ |
421 '<!@(<(pkg-config) --libs-only-L --libs-only-other xscrnsaver)', | 421 '<!@(<(pkg-config) --libs-only-L --libs-only-other xscrnsaver)', |
422 ], | 422 ], |
423 'libraries': [ | 423 'libraries': [ |
424 '<!@(<(pkg-config) --libs-only-l xscrnsaver)', | 424 '<!@(<(pkg-config) --libs-only-l xscrnsaver)', |
425 ], | 425 ], |
426 }, | 426 }, |
427 }, | 427 }, |
428 ], # targets | 428 ], # targets |
429 }], | 429 }], |
| 430 ['use_evdev_gestures==1', { |
| 431 'targets': [ |
| 432 { |
| 433 'target_name': 'libevdev-cros', |
| 434 'type': 'none', |
| 435 'direct_dependent_settings': { |
| 436 'cflags': [ |
| 437 '<!@(<(pkg-config) --cflags libevdev-cros)' |
| 438 ], |
| 439 }, |
| 440 'link_settings': { |
| 441 'ldflags': [ |
| 442 '<!@(<(pkg-config) --libs-only-L --libs-only-other libevdev-cros)'
, |
| 443 ], |
| 444 'libraries': [ |
| 445 '<!@(<(pkg-config) --libs-only-l libevdev-cros)', |
| 446 ], |
| 447 }, |
| 448 }, |
| 449 { |
| 450 'target_name': 'libgestures', |
| 451 'type': 'none', |
| 452 'direct_dependent_settings': { |
| 453 'cflags': [ |
| 454 '<!@(<(pkg-config) --cflags libgestures)' |
| 455 ], |
| 456 }, |
| 457 'link_settings': { |
| 458 'ldflags': [ |
| 459 '<!@(<(pkg-config) --libs-only-L --libs-only-other libgestures)', |
| 460 ], |
| 461 'libraries': [ |
| 462 '<!@(<(pkg-config) --libs-only-l libgestures)', |
| 463 ], |
| 464 }, |
| 465 }, |
| 466 ], |
| 467 }], |
430 ['use_xkbcommon==1', { | 468 ['use_xkbcommon==1', { |
431 'targets': [ | 469 'targets': [ |
432 { | 470 { |
433 'target_name': 'xkbcommon', | 471 'target_name': 'xkbcommon', |
434 'type': 'none', | 472 'type': 'none', |
435 'direct_dependent_settings': { | 473 'direct_dependent_settings': { |
436 'cflags': [ | 474 'cflags': [ |
437 '<!@(<(pkg-config) --cflags xkbcommon)' | 475 '<!@(<(pkg-config) --cflags xkbcommon)' |
438 ], | 476 ], |
439 }, | 477 }, |
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1061 'spd_set_synthesis_voice', | 1099 'spd_set_synthesis_voice', |
1062 'spd_list_modules', | 1100 'spd_list_modules', |
1063 'spd_set_output_module', | 1101 'spd_set_output_module', |
1064 ], | 1102 ], |
1065 'message': 'Generating libspeechd library loader', | 1103 'message': 'Generating libspeechd library loader', |
1066 'process_outputs_as_sources': 1, | 1104 'process_outputs_as_sources': 1, |
1067 }, | 1105 }, |
1068 ], | 1106 ], |
1069 }, | 1107 }, |
1070 { | 1108 { |
| 1109 'target_name': 'pangocairo', |
| 1110 'type': 'none', |
| 1111 'toolsets': ['host', 'target'], |
| 1112 'conditions': [ |
| 1113 ['use_pango==1 and use_cairo==1', { |
| 1114 'conditions': [ |
| 1115 ['_toolset=="target"', { |
| 1116 'direct_dependent_settings': { |
| 1117 'cflags': [ |
| 1118 '<!@(<(pkg-config) --cflags pangocairo pangoft2)', |
| 1119 ], |
| 1120 }, |
| 1121 'link_settings': { |
| 1122 'ldflags': [ |
| 1123 '<!@(<(pkg-config) --libs-only-L --libs-only-other pangocairo
pangoft2)', |
| 1124 ], |
| 1125 'libraries': [ |
| 1126 '<!@(<(pkg-config) --libs-only-l pangocairo pangoft2)', |
| 1127 ], |
| 1128 }, |
| 1129 }, { |
| 1130 'direct_dependent_settings': { |
| 1131 'cflags': [ |
| 1132 '<!@(pkg-config --cflags pangocairo pangoft2)', |
| 1133 ], |
| 1134 }, |
| 1135 'link_settings': { |
| 1136 'ldflags': [ |
| 1137 '<!@(pkg-config --libs-only-L --libs-only-other pangocairo pan
goft2)', |
| 1138 ], |
| 1139 'libraries': [ |
| 1140 '<!@(pkg-config --libs-only-l pangocairo pangoft2)', |
| 1141 ], |
| 1142 }, |
| 1143 }], |
| 1144 ], |
| 1145 }], |
| 1146 ], |
| 1147 }, |
| 1148 { |
1071 'target_name': 'ssl', | 1149 'target_name': 'ssl', |
1072 'type': 'none', | 1150 'type': 'none', |
1073 'conditions': [ | 1151 'conditions': [ |
1074 ['_toolset=="target"', { | 1152 ['_toolset=="target"', { |
1075 'conditions': [ | 1153 'conditions': [ |
1076 ['use_openssl==1', { | 1154 ['use_openssl==1', { |
1077 'dependencies': [ | 1155 'dependencies': [ |
1078 '../../third_party/boringssl/boringssl.gyp:boringssl', | 1156 '../../third_party/boringssl/boringssl.gyp:boringssl', |
1079 ], | 1157 ], |
1080 }], | 1158 }], |
(...skipping 28 matching lines...) Expand all Loading... |
1109 '-Wno-header-guard', | 1187 '-Wno-header-guard', |
1110 ], | 1188 ], |
1111 }, | 1189 }, |
1112 }], | 1190 }], |
1113 ] | 1191 ] |
1114 }], | 1192 }], |
1115 ], | 1193 ], |
1116 }, | 1194 }, |
1117 ], | 1195 ], |
1118 } | 1196 } |
OLD | NEW |