Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(731)

Side by Side Diff: build/linux/system.gyp

Issue 2003753002: Fix remoting_unittests that are failing on 32-bit linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698