| 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 config("sdk") { | 10 config("sdk") { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 pkg_config("pangoft2") { | 53 pkg_config("pangoft2") { |
| 54 packages = [ "pangoft2" ] | 54 packages = [ "pangoft2" ] |
| 55 } | 55 } |
| 56 | 56 |
| 57 # Note: if your target also depends on //dbus, you don't need to add this | 57 # Note: if your target also depends on //dbus, you don't need to add this |
| 58 # config (it will get added automatically if you depend on //dbus). | 58 # config (it will get added automatically if you depend on //dbus). |
| 59 pkg_config("dbus") { | 59 pkg_config("dbus") { |
| 60 packages = [ "dbus-1" ] | 60 packages = [ "dbus-1" ] |
| 61 } | 61 } |
| 62 | 62 |
| 63 if (use_evdev_gestures) { | |
| 64 pkg_config("libevdev-cros") { | |
| 65 packages = [ "libevdev-cros" ] | |
| 66 } | |
| 67 | |
| 68 pkg_config("libgestures") { | |
| 69 packages = [ "libgestures" ] | |
| 70 } | |
| 71 } | |
| 72 | |
| 73 config("x11") { | 63 config("x11") { |
| 74 libs = [ | 64 libs = [ |
| 75 "X11", | 65 "X11", |
| 76 "Xcomposite", | 66 "Xcomposite", |
| 77 "Xcursor", | 67 "Xcursor", |
| 78 "Xdamage", | 68 "Xdamage", |
| 79 "Xext", | 69 "Xext", |
| 80 "Xfixes", | 70 "Xfixes", |
| 81 "Xi", | 71 "Xi", |
| 82 "Xrender", | 72 "Xrender", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 "-Wno-unused-function", | 141 "-Wno-unused-function", |
| 152 ] | 142 ] |
| 153 } | 143 } |
| 154 | 144 |
| 155 pkg_config("gconf") { | 145 pkg_config("gconf") { |
| 156 packages = [ "gconf-2.0" ] | 146 packages = [ "gconf-2.0" ] |
| 157 defines = [ "USE_GCONF" ] | 147 defines = [ "USE_GCONF" ] |
| 158 } | 148 } |
| 159 } | 149 } |
| 160 } | 150 } |
| OLD | NEW |