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

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

Issue 394963002: linux: Add tests for FontRenderParams on Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add pangoft2 to BUILD.gn Created 6 years, 5 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 | Annotate | Revision Log
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/sysroot.gni") 6 import("//build/config/sysroot.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//tools/generate_library_loader/generate_library_loader.gni") 8 import("//tools/generate_library_loader/generate_library_loader.gni")
9 9
10 config("sdk") { 10 config("sdk") {
(...skipping 28 matching lines...) Expand all
39 pkg_config("gtk") { 39 pkg_config("gtk") {
40 # Gtk requires gmodule, but it does not list it as a dependency in some 40 # Gtk requires gmodule, but it does not list it as a dependency in some
41 # misconfigured systems. 41 # misconfigured systems.
42 packages = [ "gmodule-2.0", "gtk+-2.0", "gthread-2.0" ] 42 packages = [ "gmodule-2.0", "gtk+-2.0", "gthread-2.0" ]
43 } 43 }
44 44
45 pkg_config("pangocairo") { 45 pkg_config("pangocairo") {
46 packages = [ "pangocairo" ] 46 packages = [ "pangocairo" ]
47 } 47 }
48 48
49 pkg_config("pangoft2") {
50 packages = [ "pangoft2" ]
51 }
52
49 pkg_config("udev") { 53 pkg_config("udev") {
50 packages = [ "libudev" ] 54 packages = [ "libudev" ]
51 } 55 }
52 56
53 # Note: if your target also depends on //dbus, you don't need to add this 57 # Note: if your target also depends on //dbus, you don't need to add this
54 # config (it will get added automatically if you depend on //dbus). 58 # config (it will get added automatically if you depend on //dbus).
55 pkg_config("dbus") { 59 pkg_config("dbus") {
56 packages = [ "dbus-1" ] 60 packages = [ "dbus-1" ]
57 } 61 }
58 62
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 "pci_alloc", 156 "pci_alloc",
153 "pci_init", 157 "pci_init",
154 "pci_cleanup", 158 "pci_cleanup",
155 "pci_scan_bus", 159 "pci_scan_bus",
156 "pci_fill_info", 160 "pci_fill_info",
157 "pci_lookup_name", 161 "pci_lookup_name",
158 ] 162 ]
159 } 163 }
160 164
161 # Looking for libspeechd? Use //third_party/speech-dispatcher 165 # Looking for libspeechd? Use //third_party/speech-dispatcher
OLDNEW
« no previous file with comments | « no previous file | content/shell/app/webkit_test_platform_support_linux.cc » ('j') | ui/gfx/test/fontconfig_util_linux.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698