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 12 matching lines...) Expand all Loading... |
23 "value") ] | 23 "value") ] |
24 } | 24 } |
25 | 25 |
26 # Set here because OS_CHROMEOS cannot be autodetected in build_config.h like | 26 # Set here because OS_CHROMEOS cannot be autodetected in build_config.h like |
27 # OS_LINUX and the like. | 27 # OS_LINUX and the like. |
28 if (is_chromeos) { | 28 if (is_chromeos) { |
29 defines = [ "OS_CHROMEOS" ] | 29 defines = [ "OS_CHROMEOS" ] |
30 } | 30 } |
31 } | 31 } |
32 | 32 |
33 config("fontconfig") { | |
34 libs = [ "fontconfig" ] | |
35 } | |
36 | |
37 pkg_config("freetype2") { | 33 pkg_config("freetype2") { |
38 packages = [ "freetype2" ] | 34 packages = [ "freetype2" ] |
39 } | 35 } |
40 | 36 |
41 config("x11") { | 37 config("x11") { |
42 libs = [ | 38 libs = [ |
43 "X11", | 39 "X11", |
44 "Xi", | 40 "Xi", |
45 ] | 41 ] |
46 } | 42 } |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 | 126 |
131 functions = libudev_functions | 127 functions = libudev_functions |
132 } | 128 } |
133 | 129 |
134 group("udev") { | 130 group("udev") { |
135 deps = [ | 131 deps = [ |
136 ":udev0_loader", | 132 ":udev0_loader", |
137 ":udev1_loader", | 133 ":udev1_loader", |
138 ] | 134 ] |
139 } | 135 } |
OLD | NEW |