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

Side by Side Diff: net/BUILD.gn

Issue 918933002: Implement utility-side proxy resolver factory Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@host-resolver-mojo
Patch Set: Created 5 years, 10 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 | « no previous file | net/net.gyp » ('j') | net/proxy/mojo_proxy_resolver_factory_impl.cc » ('J')
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 807 matching lines...) Expand 10 before | Expand all | Expand 10 after
818 ":net", 818 ":net",
819 "//net/interfaces", 819 "//net/interfaces",
820 "//third_party/mojo/src/mojo/public/cpp/bindings", 820 "//third_party/mojo/src/mojo/public/cpp/bindings",
821 ] 821 ]
822 } 822 }
823 823
824 source_set("net_utility_services") { 824 source_set("net_utility_services") {
825 sources = [ 825 sources = [
826 "dns/host_resolver_mojo.cc", 826 "dns/host_resolver_mojo.cc",
827 "dns/host_resolver_mojo.h", 827 "dns/host_resolver_mojo.h",
828 "proxy/mojo_proxy_resolver_factory_impl.cc",
829 "proxy/mojo_proxy_resolver_factory_impl.h",
828 "proxy/mojo_proxy_resolver_impl.cc", 830 "proxy/mojo_proxy_resolver_impl.cc",
829 "proxy/mojo_proxy_resolver_impl.h", 831 "proxy/mojo_proxy_resolver_impl.h",
830 ] 832 ]
831 833
832 public_deps = [ 834 public_deps = [
833 ":mojo_type_converters", 835 ":mojo_type_converters",
834 ":net", 836 ":net",
835 "//mojo/common", 837 "//mojo/common",
836 "//net/interfaces", 838 "//net/interfaces",
837 "//third_party/mojo/src/mojo/public/cpp/bindings", 839 "//third_party/mojo/src/mojo/public/cpp/bindings",
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
1372 deps += [ 1374 deps += [
1373 ":net_browser_services", 1375 ":net_browser_services",
1374 ":net_utility_services", 1376 ":net_utility_services",
1375 "//mojo/environment:chromium", 1377 "//mojo/environment:chromium",
1376 "//third_party/mojo/src/mojo/edk/system", 1378 "//third_party/mojo/src/mojo/edk/system",
1377 ] 1379 ]
1378 } else { 1380 } else {
1379 sources -= [ 1381 sources -= [
1380 "dns/host_resolver_mojo_unittest.cc", 1382 "dns/host_resolver_mojo_unittest.cc",
1381 "dns/mojo_host_resolver_impl_unittest.cc", 1383 "dns/mojo_host_resolver_impl_unittest.cc",
1384 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc",
1382 "proxy/mojo_proxy_resolver_impl_unittest.cc", 1385 "proxy/mojo_proxy_resolver_impl_unittest.cc",
1383 ] 1386 ]
1384 } 1387 }
1385 1388
1386 if (!enable_mdns) { 1389 if (!enable_mdns) {
1387 sources -= [ 1390 sources -= [
1388 "dns/mdns_cache_unittest.cc", 1391 "dns/mdns_cache_unittest.cc",
1389 "dns/mdns_client_unittest.cc", 1392 "dns/mdns_client_unittest.cc",
1390 "dns/record_parsed_unittest.cc", 1393 "dns/record_parsed_unittest.cc",
1391 "dns/record_rdata_unittest.cc", 1394 "dns/record_rdata_unittest.cc",
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
1471 "quic/quic_server_bin.cc", 1474 "quic/quic_server_bin.cc",
1472 ] 1475 ]
1473 deps = [ 1476 deps = [
1474 ":quic_tools", 1477 ":quic_tools",
1475 ":net", 1478 ":net",
1476 "//base", 1479 "//base",
1477 "//third_party/boringssl", 1480 "//third_party/boringssl",
1478 ] 1481 ]
1479 } 1482 }
1480 } # !is_android && !is_win && !is_mac 1483 } # !is_android && !is_win && !is_mac
OLDNEW
« no previous file with comments | « no previous file | net/net.gyp » ('j') | net/proxy/mojo_proxy_resolver_factory_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698