Index: build/config/linux/BUILD.gn |
diff --git a/build/config/linux/BUILD.gn b/build/config/linux/BUILD.gn |
index 46cea9e8a2fc9dc8dbd32ce5f1bb3b984254e884..d6ec560a2320a3510c9efbb4f383d40d4edb5730 100644 |
--- a/build/config/linux/BUILD.gn |
+++ b/build/config/linux/BUILD.gn |
@@ -4,6 +4,7 @@ |
import("//build/config/linux/pkg_config.gni") |
import("//build/config/sysroot.gni") |
+import("//build/config/ui.gni") |
config("sdk") { |
if (sysroot != "") { |
@@ -52,6 +53,16 @@ pkg_config("dbus") { |
packages = [ "dbus-1" ] |
} |
+if (use_evdev_gestures) { |
+ pkg_config("libevdev-cros") { |
+ packages = [ "libevdev-cros" ] |
+ } |
+ |
+ pkg_config("libgestures") { |
+ packages = [ "libgestures" ] |
+ } |
+} |
+ |
config("x11") { |
# Don't bother running pkg-config for these X related libraries since it just |
# returns the same libs, and forking pkg-config is slow. |