OLD | NEW |
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 Loading... |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |