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

Side by Side Diff: net/BUILD.gn

Issue 917863005: Implementation of ProxyResolver that uses a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sam-v8-pac-utility-proxy
Patch Set: Lazily connect to Mojo service and don't automatically set PAC script when reconnecting. Created 5 years, 9 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/base/net_error_list.h » ('j') | net/proxy/proxy_resolver_mojo.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 776 matching lines...) Expand 10 before | Expand all | Expand 10 after
787 "//v8", 787 "//v8",
788 ] 788 ]
789 } 789 }
790 } 790 }
791 791
792 if (use_v8_in_net && !is_android) { 792 if (use_v8_in_net && !is_android) {
793 source_set("net_browser_services") { 793 source_set("net_browser_services") {
794 sources = [ 794 sources = [
795 "dns/mojo_host_resolver_impl.cc", 795 "dns/mojo_host_resolver_impl.cc",
796 "dns/mojo_host_resolver_impl.h", 796 "dns/mojo_host_resolver_impl.h",
797 "proxy/mojo_proxy_resolver_factory.h",
798 "proxy/proxy_resolver_mojo.cc",
799 "proxy/proxy_resolver_mojo.h",
797 ] 800 ]
798 801
799 public_deps = [ 802 public_deps = [
800 ":mojo_type_converters", 803 ":mojo_type_converters",
801 ":net", 804 ":net",
802 "//base", 805 "//base",
803 "//net/interfaces", 806 "//net/interfaces",
804 "//third_party/mojo/src/mojo/public/cpp/bindings", 807 "//third_party/mojo/src/mojo/public/cpp/bindings",
805 ] 808 ]
806 } 809 }
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
1394 ":net_utility_services", 1397 ":net_utility_services",
1395 "//mojo/environment:chromium", 1398 "//mojo/environment:chromium",
1396 "//third_party/mojo/src/mojo/edk/system", 1399 "//third_party/mojo/src/mojo/edk/system",
1397 ] 1400 ]
1398 } else { 1401 } else {
1399 sources -= [ 1402 sources -= [
1400 "dns/host_resolver_mojo_unittest.cc", 1403 "dns/host_resolver_mojo_unittest.cc",
1401 "dns/mojo_host_resolver_impl_unittest.cc", 1404 "dns/mojo_host_resolver_impl_unittest.cc",
1402 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc", 1405 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc",
1403 "proxy/mojo_proxy_resolver_impl_unittest.cc", 1406 "proxy/mojo_proxy_resolver_impl_unittest.cc",
1407 "proxy/proxy_resolver_mojo_unittest.cc",
1404 ] 1408 ]
1405 } 1409 }
1406 1410
1407 if (!enable_mdns) { 1411 if (!enable_mdns) {
1408 sources -= [ 1412 sources -= [
1409 "dns/mdns_cache_unittest.cc", 1413 "dns/mdns_cache_unittest.cc",
1410 "dns/mdns_client_unittest.cc", 1414 "dns/mdns_client_unittest.cc",
1411 "dns/record_parsed_unittest.cc", 1415 "dns/record_parsed_unittest.cc",
1412 "dns/record_rdata_unittest.cc", 1416 "dns/record_rdata_unittest.cc",
1413 ] 1417 ]
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
1492 "quic/quic_server_bin.cc", 1496 "quic/quic_server_bin.cc",
1493 ] 1497 ]
1494 deps = [ 1498 deps = [
1495 ":quic_tools", 1499 ":quic_tools",
1496 ":net", 1500 ":net",
1497 "//base", 1501 "//base",
1498 "//third_party/boringssl", 1502 "//third_party/boringssl",
1499 ] 1503 ]
1500 } 1504 }
1501 } # !is_android && !is_win && !is_mac 1505 } # !is_android && !is_win && !is_mac
OLDNEW
« no previous file with comments | « no previous file | net/base/net_error_list.h » ('j') | net/proxy/proxy_resolver_mojo.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698