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("pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
6 | 6 |
7 # Sets up the dynamic library search path to include our "lib" directory. | 7 # Sets up the dynamic library search path to include our "lib" directory. |
8 config("executable_ldconfig") { | 8 config("executable_ldconfig") { |
9 ldflags = [ | 9 ldflags = [ |
10 # Want to pass "\$". Need to escape both '\' and '$'. GN will re-escape as | 10 # Want to pass "\$". Need to escape both '\' and '$'. GN will re-escape as |
11 # required for ninja. | 11 # required for ninja. |
12 "-Wl,-rpath=\\\$ORIGIN/lib/", | 12 "-Wl,-rpath=\\\$ORIGIN/lib/", |
13 | 13 |
14 "-Wl,-rpath-link=lib/", | 14 "-Wl,-rpath-link=lib/", |
15 ] | 15 ] |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 "Xcursor", | 52 "Xcursor", |
53 "Xdamage", | 53 "Xdamage", |
54 "Xext", | 54 "Xext", |
55 "Xfixes", | 55 "Xfixes", |
56 "Xi", | 56 "Xi", |
57 "Xrender", | 57 "Xrender", |
58 "Xss", | 58 "Xss", |
59 "Xtst", | 59 "Xtst", |
60 ] | 60 ] |
61 } | 61 } |
OLD | NEW |