OLD | NEW |
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 | 9 |
10 # This is included by reference in the //build/config/compiler config that | 10 # This is included by reference in the //build/config/compiler config that |
(...skipping 16 matching lines...) Expand all Loading... |
27 } | 27 } |
28 } | 28 } |
29 | 29 |
30 config("fontconfig") { | 30 config("fontconfig") { |
31 visibility = [ "//build/linux:fontconfig" ] | 31 visibility = [ "//build/linux:fontconfig" ] |
32 | 32 |
33 libs = [ "fontconfig" ] | 33 libs = [ "fontconfig" ] |
34 } | 34 } |
35 | 35 |
36 pkg_config("freetype2") { | 36 pkg_config("freetype2") { |
| 37 visibility = [ "//build/linux:freetype2" ] |
| 38 |
37 packages = [ "freetype2" ] | 39 packages = [ "freetype2" ] |
38 } | 40 } |
39 | 41 |
40 pkg_config("glib") { | 42 pkg_config("glib") { |
41 packages = [ | 43 packages = [ |
42 "glib-2.0", | 44 "glib-2.0", |
43 "gmodule-2.0", | 45 "gmodule-2.0", |
44 "gobject-2.0", | 46 "gobject-2.0", |
45 "gthread-2.0", | 47 "gthread-2.0", |
46 ] | 48 ] |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 "-Wno-unused-function", | 147 "-Wno-unused-function", |
146 ] | 148 ] |
147 } | 149 } |
148 | 150 |
149 pkg_config("gconf") { | 151 pkg_config("gconf") { |
150 packages = [ "gconf-2.0" ] | 152 packages = [ "gconf-2.0" ] |
151 defines = [ "USE_GCONF" ] | 153 defines = [ "USE_GCONF" ] |
152 } | 154 } |
153 } | 155 } |
154 } | 156 } |
OLD | NEW |