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 # If any of the linux_link_FOO below are set to 1, then the corresponding | 7 # If any of the linux_link_FOO below are set to 1, then the corresponding |
8 # target will be linked against the FOO library (either dynamically or | 8 # target will be linked against the FOO library (either dynamically or |
9 # statically, depending on the pkg-config files), as opposed to loading the | 9 # statically, depending on the pkg-config files), as opposed to loading the |
10 # FOO library dynamically with dlopen. | 10 # FOO library dynamically with dlopen. |
(...skipping 10 matching lines...) Expand all Loading... |
21 'brlapi__acceptKeys', | 21 'brlapi__acceptKeys', |
22 'brlapi__openConnection', | 22 'brlapi__openConnection', |
23 'brlapi__closeConnection', | 23 'brlapi__closeConnection', |
24 'brlapi__getDisplaySize', | 24 'brlapi__getDisplaySize', |
25 'brlapi__enterTtyModeWithPath', | 25 'brlapi__enterTtyModeWithPath', |
26 'brlapi__leaveTtyMode', | 26 'brlapi__leaveTtyMode', |
27 'brlapi__writeDots', | 27 'brlapi__writeDots', |
28 'brlapi__readKey', | 28 'brlapi__readKey', |
29 ], | 29 ], |
30 'libgio_functions': [ | 30 'libgio_functions': [ |
| 31 'g_type_init', |
31 'g_settings_new', | 32 'g_settings_new', |
32 'g_settings_get_child', | 33 'g_settings_get_child', |
33 'g_settings_get_string', | 34 'g_settings_get_string', |
34 'g_settings_get_boolean', | 35 'g_settings_get_boolean', |
35 'g_settings_get_int', | 36 'g_settings_get_int', |
36 'g_settings_get_strv', | 37 'g_settings_get_strv', |
37 'g_settings_list_schemas', | 38 'g_settings_list_schemas', |
38 ], | 39 ], |
39 'libpci_functions': [ | 40 'libpci_functions': [ |
40 'pci_alloc', | 41 'pci_alloc', |
(...skipping 1250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1291 ], | 1292 ], |
1292 'libraries': [ | 1293 'libraries': [ |
1293 '<!@(<(pkg-config) --libs-only-l libffi)', | 1294 '<!@(<(pkg-config) --libs-only-l libffi)', |
1294 ], | 1295 ], |
1295 }, | 1296 }, |
1296 }], | 1297 }], |
1297 ], | 1298 ], |
1298 }, | 1299 }, |
1299 ], | 1300 ], |
1300 } | 1301 } |
OLD | NEW |