| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 } | 55 } |
| 56 | 56 |
| 57 config("fontconfig") { | 57 config("fontconfig") { |
| 58 libs = [ "fontconfig" ] | 58 libs = [ "fontconfig" ] |
| 59 } | 59 } |
| 60 | 60 |
| 61 pkg_config("freetype2") { | 61 pkg_config("freetype2") { |
| 62 packages = [ "freetype2" ] | 62 packages = [ "freetype2" ] |
| 63 } | 63 } |
| 64 | 64 |
| 65 pkg_config("glib") { | |
| 66 packages = [ | |
| 67 "glib-2.0", | |
| 68 "gmodule-2.0", | |
| 69 "gobject-2.0", | |
| 70 "gthread-2.0", | |
| 71 ] | |
| 72 } | |
| 73 | |
| 74 pkg_config("pangocairo") { | 65 pkg_config("pangocairo") { |
| 75 packages = [ "pangocairo" ] | 66 packages = [ "pangocairo" ] |
| 76 } | 67 } |
| 77 | 68 |
| 78 pkg_config("pangoft2") { | 69 pkg_config("pangoft2") { |
| 79 packages = [ "pangoft2" ] | 70 packages = [ "pangoft2" ] |
| 80 } | 71 } |
| 81 | 72 |
| 82 # Note: if your target also depends on //dbus, you don't need to add this | 73 # Note: if your target also depends on //dbus, you don't need to add this |
| 83 # config (it will get added automatically if you depend on //dbus). | 74 # config (it will get added automatically if you depend on //dbus). |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 | 234 |
| 244 functions = gypi_values.libudev_functions | 235 functions = gypi_values.libudev_functions |
| 245 } | 236 } |
| 246 | 237 |
| 247 group("udev") { | 238 group("udev") { |
| 248 deps = [ | 239 deps = [ |
| 249 ":udev0_loader", | 240 ":udev0_loader", |
| 250 ":udev1_loader", | 241 ":udev1_loader", |
| 251 ] | 242 ] |
| 252 } | 243 } |
| OLD | NEW |