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

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

Issue 393953008: Add ui/display, message_center, webview to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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
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/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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 90
91 config("xcomposite") { 91 config("xcomposite") {
92 libs = [ "Xcomposite" ] 92 libs = [ "Xcomposite" ]
93 } 93 }
94 94
95 config("xext") { 95 config("xext") {
96 libs = [ "Xext" ] 96 libs = [ "Xext" ]
97 } 97 }
98 98
99 config("xrandr") { 99 config("xrandr") {
100 libs = [ "xrandr" ] 100 libs = [ "Xrandr" ]
101 } 101 }
102 102
103 config("xscrnsaver") { 103 config("xscrnsaver") {
104 libs = [ "Xss" ] 104 libs = [ "Xss" ]
105 } 105 }
106 106
107 config("libcap") { 107 config("libcap") {
108 libs = [ "cap" ] 108 libs = [ "cap" ]
109 } 109 }
110 110
111 config("xi") {
112 libs = [ "Xi" ]
113 }
114
111 config("libresolv") { 115 config("libresolv") {
112 libs = [ "resolv" ] 116 libs = [ "resolv" ]
113 } 117 }
114 118
115 pkg_config("gconf") { 119 pkg_config("gconf") {
116 packages = [ "gconf-2.0" ] 120 packages = [ "gconf-2.0" ]
117 defines = [ "USE_GCONF" ] 121 defines = [ "USE_GCONF" ]
118 } 122 }
119 123
120 # If brlapi isn't needed, don't require it to be installed. 124 # If brlapi isn't needed, don't require it to be installed.
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 "pci_alloc", 173 "pci_alloc",
170 "pci_init", 174 "pci_init",
171 "pci_cleanup", 175 "pci_cleanup",
172 "pci_scan_bus", 176 "pci_scan_bus",
173 "pci_fill_info", 177 "pci_fill_info",
174 "pci_lookup_name", 178 "pci_lookup_name",
175 ] 179 ]
176 } 180 }
177 181
178 # Looking for libspeechd? Use //third_party/speech-dispatcher 182 # Looking for libspeechd? Use //third_party/speech-dispatcher
OLDNEW
« no previous file with comments | « build/config/features.gni ('k') | chrome/browser/BUILD.gn » ('j') | ui/shell_dialogs/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698