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

Side by Side Diff: build/config/linux/BUILD.gn

Issue 550423002: GN: Fix some breakage for os==chromeos build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | chrome/chrome_common.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 import("//build/config/linux/pkg_config.gni") 5 import("//build/config/linux/pkg_config.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/sysroot.gni") 7 import("//build/config/sysroot.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//tools/generate_library_loader/generate_library_loader.gni") 9 import("//tools/generate_library_loader/generate_library_loader.gni")
10 10
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 defines = [ "USE_BRLAPI" ] 135 defines = [ "USE_BRLAPI" ]
136 } 136 }
137 137
138 # TODO(GYP) linux_link_brlapi support. Is this needed? 138 # TODO(GYP) linux_link_brlapi support. Is this needed?
139 generate_library_loader("libbrlapi") { 139 generate_library_loader("libbrlapi") {
140 name = "LibBrlapiLoader" 140 name = "LibBrlapiLoader"
141 output_h = "libbrlapi.h" 141 output_h = "libbrlapi.h"
142 output_cc = "libbrlapi_loader.cc" 142 output_cc = "libbrlapi_loader.cc"
143 header = "<brlapi.h>" 143 header = "<brlapi.h>"
144 config = ":brlapi_config" 144 config = ":brlapi_config"
145
146 functions = []
brettw 2014/09/08 22:16:07 I think you actually need the functions in this li
145 } 147 }
146 } 148 }
147 149
148 pkg_config("gio_config") { 150 pkg_config("gio_config") {
149 packages = [ "gio-2.0" ] 151 packages = [ "gio-2.0" ]
150 # glib >=2.40 deprecate g_settings_list_schemas in favor of 152 # glib >=2.40 deprecate g_settings_list_schemas in favor of
151 # g_settings_schema_source_list_schemas. This function is not available on 153 # g_settings_schema_source_list_schemas. This function is not available on
152 # earlier versions that we still need to support (specifically, 2.32), so 154 # earlier versions that we still need to support (specifically, 2.32), so
153 # disable the warning with the GLIB_DISABLE_DEPRECATION_WARNINGS define. 155 # disable the warning with the GLIB_DISABLE_DEPRECATION_WARNINGS define.
154 # TODO(mgiuca): Remove this suppression when we drop support for Ubuntu 13.10 156 # TODO(mgiuca): Remove this suppression when we drop support for Ubuntu 13.10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 "pci_alloc", 190 "pci_alloc",
189 "pci_init", 191 "pci_init",
190 "pci_cleanup", 192 "pci_cleanup",
191 "pci_scan_bus", 193 "pci_scan_bus",
192 "pci_fill_info", 194 "pci_fill_info",
193 "pci_lookup_name", 195 "pci_lookup_name",
194 ] 196 ]
195 } 197 }
196 198
197 # Looking for libspeechd? Use //third_party/speech-dispatcher 199 # Looking for libspeechd? Use //third_party/speech-dispatcher
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698