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

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

Issue 305293002: Add GN build file for ui/aura target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 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.gn ('k') | ui/aura/BUILD.gn » ('j') | ui/gfx/x/BUILD.gn » ('J')
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("//build/config/linux/pkg_config.gni") 5 import("//build/config/linux/pkg_config.gni")
6 import("//build/config/sysroot.gni") 6 import("//build/config/sysroot.gni")
7 7
8 config("sdk") { 8 config("sdk") {
9 if (sysroot != "") { 9 if (sysroot != "") {
10 cflags = [ "--sysroot=" + sysroot ] 10 cflags = [ "--sysroot=" + sysroot ]
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 } 70 }
71 71
72 config("xcomposite") { 72 config("xcomposite") {
73 libs = [ "Xcomposite" ] 73 libs = [ "Xcomposite" ]
74 } 74 }
75 75
76 config("xext") { 76 config("xext") {
77 libs = [ "Xext" ] 77 libs = [ "Xext" ]
78 } 78 }
79 79
80 config("xrandr") {
81 libs = [ "xrandr" ]
82 }
83
80 config("libcap") { 84 config("libcap") {
81 libs = [ "cap" ] 85 libs = [ "cap" ]
82 } 86 }
83 87
84 config("libresolv") { 88 config("libresolv") {
85 libs = [ "resolv" ] 89 libs = [ "resolv" ]
86 } 90 }
87 91
88 pkg_config("gconf") { 92 pkg_config("gconf") {
89 packages = [ "gconf-2.0" ] 93 packages = [ "gconf-2.0" ]
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 180
177 functions = [ 181 functions = [
178 "pci_alloc", 182 "pci_alloc",
179 "pci_init", 183 "pci_init",
180 "pci_cleanup", 184 "pci_cleanup",
181 "pci_scan_bus", 185 "pci_scan_bus",
182 "pci_fill_info", 186 "pci_fill_info",
183 "pci_lookup_name", 187 "pci_lookup_name",
184 ] 188 ]
185 } 189 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | ui/aura/BUILD.gn » ('j') | ui/gfx/x/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698