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/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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 pkg_config("udev") { | 49 pkg_config("udev") { |
50 packages = [ "libudev" ] | 50 packages = [ "libudev" ] |
51 } | 51 } |
52 | 52 |
53 # Note: if your target also depends on //dbus, you don't need to add this | 53 # 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). | 54 # config (it will get added automatically if you depend on //dbus). |
55 pkg_config("dbus") { | 55 pkg_config("dbus") { |
56 packages = [ "dbus-1" ] | 56 packages = [ "dbus-1" ] |
57 } | 57 } |
58 | 58 |
| 59 pkg_config("gnome_keyring") { |
| 60 packages = [ "gnome-keyring-1" ] |
| 61 } |
| 62 |
59 if (use_evdev_gestures) { | 63 if (use_evdev_gestures) { |
60 pkg_config("libevdev-cros") { | 64 pkg_config("libevdev-cros") { |
61 packages = [ "libevdev-cros" ] | 65 packages = [ "libevdev-cros" ] |
62 } | 66 } |
63 | 67 |
64 pkg_config("libgestures") { | 68 pkg_config("libgestures") { |
65 packages = [ "libgestures" ] | 69 packages = [ "libgestures" ] |
66 } | 70 } |
67 } | 71 } |
68 | 72 |
(...skipping 19 matching lines...) Expand all Loading... |
88 } | 92 } |
89 | 93 |
90 config("xext") { | 94 config("xext") { |
91 libs = [ "Xext" ] | 95 libs = [ "Xext" ] |
92 } | 96 } |
93 | 97 |
94 config("xrandr") { | 98 config("xrandr") { |
95 libs = [ "xrandr" ] | 99 libs = [ "xrandr" ] |
96 } | 100 } |
97 | 101 |
| 102 config("xscrnsaver") { |
| 103 libs = [ "Xss" ] |
| 104 } |
| 105 |
98 config("libcap") { | 106 config("libcap") { |
99 libs = [ "cap" ] | 107 libs = [ "cap" ] |
100 } | 108 } |
101 | 109 |
102 config("libresolv") { | 110 config("libresolv") { |
103 libs = [ "resolv" ] | 111 libs = [ "resolv" ] |
104 } | 112 } |
105 | 113 |
106 pkg_config("gconf") { | 114 pkg_config("gconf") { |
107 packages = [ "gconf-2.0" ] | 115 packages = [ "gconf-2.0" ] |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 "spd_resume", | 174 "spd_resume", |
167 "spd_set_notification_on", | 175 "spd_set_notification_on", |
168 "spd_set_voice_rate", | 176 "spd_set_voice_rate", |
169 "spd_set_voice_pitch", | 177 "spd_set_voice_pitch", |
170 "spd_list_synthesis_voices", | 178 "spd_list_synthesis_voices", |
171 "spd_set_synthesis_voice", | 179 "spd_set_synthesis_voice", |
172 "spd_list_modules", | 180 "spd_list_modules", |
173 "spd_set_output_module", | 181 "spd_set_output_module", |
174 ] | 182 ] |
175 } | 183 } |
OLD | NEW |