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/sysroot.gni") |
| 7 |
| 8 config("sdk") { |
| 9 if (sysroot != "") { |
| 10 cflags = [ "--sysroot=" + sysroot ] |
| 11 ldflags = [ "--sysroot=" + sysroot ] |
| 12 |
| 13 # Need to get some linker flags out of the sysroot. |
| 14 ldflags += [ exec_script("sysroot_ld_path.py", |
| 15 [ rebase_path("//build/linux/sysroot_ld_path.sh", ".", root_build_dir), |
| 16 sysroot ], |
| 17 "value") ] |
| 18 } |
| 19 } |
6 | 20 |
7 # Sets up the dynamic library search path to include our "lib" directory. | 21 # Sets up the dynamic library search path to include our "lib" directory. |
8 config("executable_ldconfig") { | 22 config("executable_ldconfig") { |
9 ldflags = [ | 23 ldflags = [ |
10 # Want to pass "\$". Need to escape both '\' and '$'. GN will re-escape as | 24 # Want to pass "\$". Need to escape both '\' and '$'. GN will re-escape as |
11 # required for ninja. | 25 # required for ninja. |
12 "-Wl,-rpath=\\\$ORIGIN/lib/", | 26 "-Wl,-rpath=\\\$ORIGIN/lib/", |
13 | 27 |
14 "-Wl,-rpath-link=lib/", | 28 "-Wl,-rpath-link=lib/", |
15 ] | 29 ] |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 "Xcursor", | 66 "Xcursor", |
53 "Xdamage", | 67 "Xdamage", |
54 "Xext", | 68 "Xext", |
55 "Xfixes", | 69 "Xfixes", |
56 "Xi", | 70 "Xi", |
57 "Xrender", | 71 "Xrender", |
58 "Xss", | 72 "Xss", |
59 "Xtst", | 73 "Xtst", |
60 ] | 74 ] |
61 } | 75 } |
OLD | NEW |