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

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

Issue 236063018: Fill out the rest of the net targets in the GN build except Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comments Created 6 years, 8 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 | « base/BUILD.gn ('k') | net/BUILD.gn » ('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("//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 "Xext", 70 "Xext",
71 "Xfixes", 71 "Xfixes",
72 "Xi", 72 "Xi",
73 "Xrender", 73 "Xrender",
74 "Xss", 74 "Xss",
75 "Xtst", 75 "Xtst",
76 ] 76 ]
77 } 77 }
78 78
79 config("libresolv") { 79 config("libresolv") {
80 libs = [ "libresolv" ] 80 libs = [ "resolv" ]
81 } 81 }
82 82
83 pkg_config("gconf") { 83 pkg_config("gconf") {
84 packages = [ "gconf-2.0" ] 84 packages = [ "gconf-2.0" ]
85 defines = [ "USE_GCONF" ] 85 defines = [ "USE_GCONF" ]
86 } 86 }
87 87
88 pkg_config("gio_config") { 88 pkg_config("gio_config") {
89 packages = [ "gio-2.0" ] 89 packages = [ "gio-2.0" ]
90 defines = [ "USE_GIO" ] 90 defines = [ "USE_GIO" ]
(...skipping 27 matching lines...) Expand all
118 "g_settings_get_strv", 118 "g_settings_get_strv",
119 "g_settings_list_schemas", 119 "g_settings_list_schemas",
120 ] 120 ]
121 } 121 }
122 122
123 source_set("gio") { 123 source_set("gio") {
124 direct_dependent_configs = [ ":gio_config" ] 124 direct_dependent_configs = [ ":gio_config" ]
125 sources = [ gio_output_h, gio_output_cc ] 125 sources = [ gio_output_h, gio_output_cc ]
126 deps = [ ":make_gio_headers" ] 126 deps = [ ":make_gio_headers" ]
127 } 127 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698