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 import("//tools/generate_library_loader/generate_library_loader.gni") | 9 import("//tools/generate_library_loader/generate_library_loader.gni") |
10 | 10 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 | 45 |
46 pkg_config("glib") { | 46 pkg_config("glib") { |
47 packages = [ | 47 packages = [ |
48 "glib-2.0", | 48 "glib-2.0", |
49 "gmodule-2.0", | 49 "gmodule-2.0", |
50 "gobject-2.0", | 50 "gobject-2.0", |
51 "gthread-2.0", | 51 "gthread-2.0", |
52 ] | 52 ] |
53 } | 53 } |
54 | 54 |
| 55 pkg_config("pangocairo") { |
| 56 packages = [ "pangocairo" ] |
| 57 } |
| 58 |
55 pkg_config("pangoft2") { | 59 pkg_config("pangoft2") { |
56 packages = [ "pangoft2" ] | 60 packages = [ "pangoft2" ] |
57 } | 61 } |
58 | 62 |
59 # Note: if your target also depends on //dbus, you don't need to add this | 63 # Note: if your target also depends on //dbus, you don't need to add this |
60 # config (it will get added automatically if you depend on //dbus). | 64 # config (it will get added automatically if you depend on //dbus). |
61 pkg_config("dbus") { | 65 pkg_config("dbus") { |
62 packages = [ "dbus-1" ] | 66 packages = [ "dbus-1" ] |
63 } | 67 } |
64 | 68 |
| 69 if (use_evdev_gestures) { |
| 70 pkg_config("libevdev-cros") { |
| 71 packages = [ "libevdev-cros" ] |
| 72 } |
| 73 |
| 74 pkg_config("libgestures") { |
| 75 packages = [ "libgestures" ] |
| 76 } |
| 77 } |
| 78 |
65 config("x11") { | 79 config("x11") { |
66 libs = [ | 80 libs = [ |
67 "X11", | 81 "X11", |
68 "Xcomposite", | 82 "Xcomposite", |
69 "Xcursor", | 83 "Xcursor", |
70 "Xdamage", | 84 "Xdamage", |
71 "Xext", | 85 "Xext", |
72 "Xfixes", | 86 "Xfixes", |
73 "Xi", | 87 "Xi", |
74 "Xrender", | 88 "Xrender", |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 | 222 |
209 functions = gypi_values.libudev_functions | 223 functions = gypi_values.libudev_functions |
210 } | 224 } |
211 | 225 |
212 group("udev") { | 226 group("udev") { |
213 deps = [ | 227 deps = [ |
214 ":udev0_loader", | 228 ":udev0_loader", |
215 ":udev1_loader", | 229 ":udev1_loader", |
216 ] | 230 ] |
217 } | 231 } |
OLD | NEW |