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

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

Issue 505853003: Work on GN build of Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl try 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 | « build/config/features.gni ('k') | chrome/browser/BUILD.gn » ('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 21 matching lines...) Expand all
32 pkg_config("glib") { 32 pkg_config("glib") {
33 packages = [ "glib-2.0", "gmodule-2.0", "gobject-2.0", "gthread-2.0" ] 33 packages = [ "glib-2.0", "gmodule-2.0", "gobject-2.0", "gthread-2.0" ]
34 } 34 }
35 35
36 pkg_config("gtk") { 36 pkg_config("gtk") {
37 # Gtk requires gmodule, but it does not list it as a dependency in some 37 # Gtk requires gmodule, but it does not list it as a dependency in some
38 # misconfigured systems. 38 # misconfigured systems.
39 packages = [ "gmodule-2.0", "gtk+-2.0", "gthread-2.0" ] 39 packages = [ "gmodule-2.0", "gtk+-2.0", "gthread-2.0" ]
40 } 40 }
41 41
42 pkg_config("gtkprint") {
43 packages = [ "gtk+-unix-print-2.0" ]
44 }
45
42 pkg_config("pangocairo") { 46 pkg_config("pangocairo") {
43 packages = [ "pangocairo" ] 47 packages = [ "pangocairo" ]
44 } 48 }
45 49
46 pkg_config("pangoft2") { 50 pkg_config("pangoft2") {
47 packages = [ "pangoft2" ] 51 packages = [ "pangoft2" ]
48 } 52 }
49 53
50 pkg_config("udev") { 54 pkg_config("udev") {
51 packages = [ "libudev" ] 55 packages = [ "libudev" ]
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 "pci_alloc", 181 "pci_alloc",
178 "pci_init", 182 "pci_init",
179 "pci_cleanup", 183 "pci_cleanup",
180 "pci_scan_bus", 184 "pci_scan_bus",
181 "pci_fill_info", 185 "pci_fill_info",
182 "pci_lookup_name", 186 "pci_lookup_name",
183 ] 187 ]
184 } 188 }
185 189
186 # Looking for libspeechd? Use //third_party/speech-dispatcher 190 # Looking for libspeechd? Use //third_party/speech-dispatcher
OLDNEW
« no previous file with comments | « build/config/features.gni ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698