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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
817 ":net", | 817 ":net", |
818 "//net/interfaces", | 818 "//net/interfaces", |
819 "//third_party/mojo/src/mojo/public/cpp/bindings", | 819 "//third_party/mojo/src/mojo/public/cpp/bindings", |
820 ] | 820 ] |
821 } | 821 } |
822 | 822 |
823 source_set("net_utility_services") { | 823 source_set("net_utility_services") { |
824 sources = [ | 824 sources = [ |
825 "dns/host_resolver_mojo.cc", | 825 "dns/host_resolver_mojo.cc", |
826 "dns/host_resolver_mojo.h", | 826 "dns/host_resolver_mojo.h", |
| 827 "proxy/mojo_proxy_resolver_factory.cc", |
| 828 "proxy/mojo_proxy_resolver_factory.h", |
827 "proxy/mojo_proxy_resolver_impl.cc", | 829 "proxy/mojo_proxy_resolver_impl.cc", |
828 "proxy/mojo_proxy_resolver_impl.h", | 830 "proxy/mojo_proxy_resolver_impl.h", |
829 ] | 831 ] |
830 | 832 |
831 public_deps = [ | 833 public_deps = [ |
832 ":mojo_type_converters", | 834 ":mojo_type_converters", |
833 ":net", | 835 ":net", |
834 "//mojo/common", | 836 "//mojo/common", |
835 "//net/interfaces", | 837 "//net/interfaces", |
836 "//third_party/mojo/src/mojo/public/cpp/bindings", | 838 "//third_party/mojo/src/mojo/public/cpp/bindings", |
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1371 deps += [ | 1373 deps += [ |
1372 ":net_browser_services", | 1374 ":net_browser_services", |
1373 ":net_utility_services", | 1375 ":net_utility_services", |
1374 "//mojo/environment:chromium", | 1376 "//mojo/environment:chromium", |
1375 "//third_party/mojo/src/mojo/edk/system", | 1377 "//third_party/mojo/src/mojo/edk/system", |
1376 ] | 1378 ] |
1377 } else { | 1379 } else { |
1378 sources -= [ | 1380 sources -= [ |
1379 "dns/host_resolver_mojo_unittest.cc", | 1381 "dns/host_resolver_mojo_unittest.cc", |
1380 "dns/mojo_host_resolver_impl_unittest.cc", | 1382 "dns/mojo_host_resolver_impl_unittest.cc", |
| 1383 "proxy/mojo_proxy_resolver_factory_unittest.cc", |
1381 "proxy/mojo_proxy_resolver_impl_unittest.cc", | 1384 "proxy/mojo_proxy_resolver_impl_unittest.cc", |
1382 ] | 1385 ] |
1383 } | 1386 } |
1384 | 1387 |
1385 if (!enable_mdns) { | 1388 if (!enable_mdns) { |
1386 sources -= [ | 1389 sources -= [ |
1387 "dns/mdns_cache_unittest.cc", | 1390 "dns/mdns_cache_unittest.cc", |
1388 "dns/mdns_client_unittest.cc", | 1391 "dns/mdns_client_unittest.cc", |
1389 "dns/record_parsed_unittest.cc", | 1392 "dns/record_parsed_unittest.cc", |
1390 "dns/record_rdata_unittest.cc", | 1393 "dns/record_rdata_unittest.cc", |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1470 "quic/quic_server_bin.cc", | 1473 "quic/quic_server_bin.cc", |
1471 ] | 1474 ] |
1472 deps = [ | 1475 deps = [ |
1473 ":quic_tools", | 1476 ":quic_tools", |
1474 ":net", | 1477 ":net", |
1475 "//base", | 1478 "//base", |
1476 "//third_party/boringssl", | 1479 "//third_party/boringssl", |
1477 ] | 1480 ] |
1478 } | 1481 } |
1479 } # !is_android && !is_win && !is_mac | 1482 } # !is_android && !is_win && !is_mac |
OLD | NEW |