Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: build/config/linux/BUILD.gn

Issue 121173005: Work on Android GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/config/compiler/BUILD.gn ('k') | build/config/linux/sysroot.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « build/config/compiler/BUILD.gn ('k') | build/config/linux/sysroot.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698