| 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 # This is included by reference in the //build/config/compiler config that | 10 # This is included by reference in the //build/config/compiler config that |
| (...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 pkg_config("libffi") { |
| 64 packages = [ "libffi" ] |
| 65 } |
| 66 |
| 63 config("x11") { | 67 config("x11") { |
| 64 libs = [ | 68 libs = [ |
| 65 "X11", | 69 "X11", |
| 66 "Xcomposite", | 70 "Xcomposite", |
| 67 "Xcursor", | 71 "Xcursor", |
| 68 "Xdamage", | 72 "Xdamage", |
| 69 "Xext", | 73 "Xext", |
| 70 "Xfixes", | 74 "Xfixes", |
| 71 "Xi", | 75 "Xi", |
| 72 "Xrender", | 76 "Xrender", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 "-Wno-unused-function", | 145 "-Wno-unused-function", |
| 142 ] | 146 ] |
| 143 } | 147 } |
| 144 | 148 |
| 145 pkg_config("gconf") { | 149 pkg_config("gconf") { |
| 146 packages = [ "gconf-2.0" ] | 150 packages = [ "gconf-2.0" ] |
| 147 defines = [ "USE_GCONF" ] | 151 defines = [ "USE_GCONF" ] |
| 148 } | 152 } |
| 149 } | 153 } |
| 150 } | 154 } |
| OLD | NEW |