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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 'outputs': [ | 372 'outputs': [ |
373 '<(output_h)', | 373 '<(output_h)', |
374 '<(output_cc)', | 374 '<(output_cc)', |
375 ], | 375 ], |
376 'action': ['python', | 376 'action': ['python', |
377 '<(generator)', | 377 '<(generator)', |
378 '--name', 'LibGioLoader', | 378 '--name', 'LibGioLoader', |
379 '--output-h', '<(output_h)', | 379 '--output-h', '<(output_h)', |
380 '--output-cc', '<(output_cc)', | 380 '--output-cc', '<(output_cc)', |
381 '--header', '<gio/gio.h>', | 381 '--header', '<gio/gio.h>', |
382 # TODO(phajdan.jr): This will no longer be needed | |
383 # after switch to Precise, http://crbug.com/158577 . | |
384 '--bundled-header', '"build/linux/gsettings.h"', | |
385 '--link-directly=<(linux_link_gsettings)', | 382 '--link-directly=<(linux_link_gsettings)', |
386 'g_settings_new', | 383 'g_settings_new', |
387 'g_settings_get_child', | 384 'g_settings_get_child', |
388 'g_settings_get_string', | 385 'g_settings_get_string', |
389 'g_settings_get_boolean', | 386 'g_settings_get_boolean', |
390 'g_settings_get_int', | 387 'g_settings_get_int', |
391 'g_settings_get_strv', | 388 'g_settings_get_strv', |
392 'g_settings_list_schemas', | 389 'g_settings_list_schemas', |
393 ], | 390 ], |
394 'message': 'Generating libgio library loader.', | 391 'message': 'Generating libgio library loader.', |
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
836 ], | 833 ], |
837 'libraries': [ | 834 'libraries': [ |
838 '<!@(<(pkg-config) --libs-only-l libudev)', | 835 '<!@(<(pkg-config) --libs-only-l libudev)', |
839 ], | 836 ], |
840 }, | 837 }, |
841 }], | 838 }], |
842 ], | 839 ], |
843 }, | 840 }, |
844 ], | 841 ], |
845 } | 842 } |
OLD | NEW |