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

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: Fix build. 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') | 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 780 matching lines...) Expand 10 before | Expand all | Expand 10 after
791 "//v8", 791 "//v8",
792 ] 792 ]
793 } 793 }
794 } 794 }
795 795
796 if (use_v8_in_net && !is_android) { 796 if (use_v8_in_net && !is_android) {
797 source_set("net_browser_services") { 797 source_set("net_browser_services") {
798 sources = [ 798 sources = [
799 "dns/mojo_host_resolver_impl.cc", 799 "dns/mojo_host_resolver_impl.cc",
800 "dns/mojo_host_resolver_impl.h", 800 "dns/mojo_host_resolver_impl.h",
801 "proxy/mojo_proxy_resolver_factory.h",
802 "proxy/proxy_resolver_mojo.cc",
803 "proxy/proxy_resolver_mojo.h",
801 ] 804 ]
802 805
803 public_deps = [ 806 public_deps = [
804 ":mojo_type_converters", 807 ":mojo_type_converters",
805 ":net", 808 ":net",
806 "//base", 809 "//base",
810 "//mojo/common",
807 "//net/interfaces", 811 "//net/interfaces",
808 "//third_party/mojo/src/mojo/public/cpp/bindings", 812 "//third_party/mojo/src/mojo/public/cpp/bindings",
809 ] 813 ]
810 } 814 }
811 815
812 source_set("mojo_type_converters") { 816 source_set("mojo_type_converters") {
813 sources = [ 817 sources = [
814 "dns/mojo_host_type_converters.cc", 818 "dns/mojo_host_type_converters.cc",
815 "dns/mojo_host_type_converters.h", 819 "dns/mojo_host_type_converters.h",
816 "proxy/mojo_proxy_type_converters.cc", 820 "proxy/mojo_proxy_type_converters.cc",
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
1398 ":net_utility_services", 1402 ":net_utility_services",
1399 "//mojo/environment:chromium", 1403 "//mojo/environment:chromium",
1400 "//third_party/mojo/src/mojo/edk/system", 1404 "//third_party/mojo/src/mojo/edk/system",
1401 ] 1405 ]
1402 } else { 1406 } else {
1403 sources -= [ 1407 sources -= [
1404 "dns/host_resolver_mojo_unittest.cc", 1408 "dns/host_resolver_mojo_unittest.cc",
1405 "dns/mojo_host_resolver_impl_unittest.cc", 1409 "dns/mojo_host_resolver_impl_unittest.cc",
1406 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc", 1410 "proxy/mojo_proxy_resolver_factory_impl_unittest.cc",
1407 "proxy/mojo_proxy_resolver_impl_unittest.cc", 1411 "proxy/mojo_proxy_resolver_impl_unittest.cc",
1412 "proxy/proxy_resolver_mojo_unittest.cc",
1408 ] 1413 ]
1409 } 1414 }
1410 1415
1411 if (!enable_mdns) { 1416 if (!enable_mdns) {
1412 sources -= [ 1417 sources -= [
1413 "dns/mdns_cache_unittest.cc", 1418 "dns/mdns_cache_unittest.cc",
1414 "dns/mdns_client_unittest.cc", 1419 "dns/mdns_client_unittest.cc",
1415 "dns/record_parsed_unittest.cc", 1420 "dns/record_parsed_unittest.cc",
1416 "dns/record_rdata_unittest.cc", 1421 "dns/record_rdata_unittest.cc",
1417 ] 1422 ]
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
1496 "quic/quic_server_bin.cc", 1501 "quic/quic_server_bin.cc",
1497 ] 1502 ]
1498 deps = [ 1503 deps = [
1499 ":quic_tools", 1504 ":quic_tools",
1500 ":net", 1505 ":net",
1501 "//base", 1506 "//base",
1502 "//third_party/boringssl", 1507 "//third_party/boringssl",
1503 ] 1508 ]
1504 } 1509 }
1505 } # !is_android && !is_win && !is_mac 1510 } # !is_android && !is_win && !is_mac
OLDNEW
« no previous file with comments | « no previous file | net/base/net_error_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698