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

Side by Side Diff: net/BUILD.gn

Issue 1314163005: Move loader stub libraries out of //build/config/linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix libbrl references Created 5 years, 3 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
« no previous file with comments | « gpu/config/BUILD.gn ('k') | third_party/libusb/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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/module_args/v8.gni") 8 import("//build/module_args/v8.gni")
9 import("//url/config.gni") 9 import("//url/config.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 # TODO(davidben): Remove these exclusions when use_openssl_certs builds also 301 # TODO(davidben): Remove these exclusions when use_openssl_certs builds also
302 # use the SSLPrivateKey machinery. 302 # use the SSLPrivateKey machinery.
303 sources -= [ 303 sources -= [
304 "ssl/threaded_ssl_private_key.cc", 304 "ssl/threaded_ssl_private_key.cc",
305 "ssl/threaded_ssl_private_key.h", 305 "ssl/threaded_ssl_private_key.h",
306 ] 306 ]
307 } 307 }
308 308
309 if (use_glib && !is_chromeos) { 309 if (use_glib && !is_chromeos) {
310 configs += [ "//build/config/linux:gconf" ] 310 configs += [ "//build/config/linux:gconf" ]
311 deps += [ "//build/config/linux:gio" ] 311 deps += [ "//build/linux:gio" ]
312 } 312 }
313 313
314 if (is_linux) { 314 if (is_linux) {
315 configs += [ "//build/config/linux:libresolv" ] 315 configs += [ "//build/config/linux:libresolv" ]
316 } 316 }
317 317
318 if (!use_nss_certs) { 318 if (!use_nss_certs) {
319 sources -= [ 319 sources -= [
320 "base/crypto_module_nss.cc", 320 "base/crypto_module_nss.cc",
321 "base/keygen_handler_nss.cc", 321 "base/keygen_handler_nss.cc",
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
1000 sources = [ 1000 sources = [
1001 "tools/net_watcher/net_watcher.cc", 1001 "tools/net_watcher/net_watcher.cc",
1002 ] 1002 ]
1003 deps = [ 1003 deps = [
1004 ":net", 1004 ":net",
1005 ":net_with_v8", 1005 ":net_with_v8",
1006 "//base", 1006 "//base",
1007 ] 1007 ]
1008 1008
1009 if (is_desktop_linux) { 1009 if (is_desktop_linux) {
1010 deps += [ "//build/config/linux:gio" ] 1010 deps += [ "//build/linux:gio" ]
1011 } 1011 }
1012 1012
1013 if (use_gconf) { 1013 if (use_gconf) {
1014 configs += [ "//build/config/linux:gconf" ] 1014 configs += [ "//build/config/linux:gconf" ]
1015 } 1015 }
1016 1016
1017 if (use_glib) { 1017 if (use_glib) {
1018 configs += [ "//build/config/linux:glib" ] 1018 configs += [ "//build/config/linux:glib" ]
1019 } 1019 }
1020 } 1020 }
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after
1692 if (enable_websockets) { 1692 if (enable_websockets) {
1693 sources += [ "websockets/websocket_frame_perftest.cc" ] 1693 sources += [ "websockets/websocket_frame_perftest.cc" ]
1694 } 1694 }
1695 1695
1696 if (use_v8_in_net) { 1696 if (use_v8_in_net) {
1697 deps += [ ":net_with_v8" ] 1697 deps += [ ":net_with_v8" ]
1698 } else { 1698 } else {
1699 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1699 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1700 } 1700 }
1701 } 1701 }
OLDNEW
« no previous file with comments | « gpu/config/BUILD.gn ('k') | third_party/libusb/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698