| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 pkg_config("pangoft2") { | 59 pkg_config("pangoft2") { |
| 60 packages = [ "pangoft2" ] | 60 packages = [ "pangoft2" ] |
| 61 } | 61 } |
| 62 | 62 |
| 63 # 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 |
| 64 # config (it will get added automatically if you depend on //dbus). | 64 # config (it will get added automatically if you depend on //dbus). |
| 65 pkg_config("dbus") { | 65 pkg_config("dbus") { |
| 66 packages = [ "dbus-1" ] | 66 packages = [ "dbus-1" ] |
| 67 } | 67 } |
| 68 | 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 | |
| 79 config("x11") { | 69 config("x11") { |
| 80 libs = [ | 70 libs = [ |
| 81 "X11", | 71 "X11", |
| 82 "Xcomposite", | 72 "Xcomposite", |
| 83 "Xcursor", | 73 "Xcursor", |
| 84 "Xdamage", | 74 "Xdamage", |
| 85 "Xext", | 75 "Xext", |
| 86 "Xfixes", | 76 "Xfixes", |
| 87 "Xi", | 77 "Xi", |
| 88 "Xrender", | 78 "Xrender", |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 | 212 |
| 223 functions = gypi_values.libudev_functions | 213 functions = gypi_values.libudev_functions |
| 224 } | 214 } |
| 225 | 215 |
| 226 group("udev") { | 216 group("udev") { |
| 227 deps = [ | 217 deps = [ |
| 228 ":udev0_loader", | 218 ":udev0_loader", |
| 229 ":udev1_loader", | 219 ":udev1_loader", |
| 230 ] | 220 ] |
| 231 } | 221 } |
| OLD | NEW |