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

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: fix embarrassingly-broken comparison 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
« no previous file with comments | « no previous file | content/shell/app/webkit_test_platform_support_linux.cc » ('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 29 matching lines...) Expand all
40 pkg_config("gtk") { 40 pkg_config("gtk") {
41 # Gtk requires gmodule, but it does not list it as a dependency in some 41 # Gtk requires gmodule, but it does not list it as a dependency in some
42 # misconfigured systems. 42 # misconfigured systems.
43 packages = [ "gmodule-2.0", "gtk+-2.0", "gthread-2.0" ] 43 packages = [ "gmodule-2.0", "gtk+-2.0", "gthread-2.0" ]
44 } 44 }
45 45
46 pkg_config("pangocairo") { 46 pkg_config("pangocairo") {
47 packages = [ "pangocairo" ] 47 packages = [ "pangocairo" ]
48 } 48 }
49 49
50 pkg_config("pangoft2") {
51 packages = [ "pangoft2" ]
52 }
53
50 pkg_config("udev") { 54 pkg_config("udev") {
51 packages = [ "libudev" ] 55 packages = [ "libudev" ]
52 } 56 }
53 57
54 # Note: if your target also depends on //dbus, you don't need to add this 58 # Note: if your target also depends on //dbus, you don't need to add this
55 # config (it will get added automatically if you depend on //dbus). 59 # config (it will get added automatically if you depend on //dbus).
56 pkg_config("dbus") { 60 pkg_config("dbus") {
57 packages = [ "dbus-1" ] 61 packages = [ "dbus-1" ]
58 } 62 }
59 63
(...skipping 117 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 | « no previous file | content/shell/app/webkit_test_platform_support_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698