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

Side by Side Diff: net/BUILD.gn

Issue 904313003: Implement utility-side host resolver Mojo client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-proxy-resolver
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/dns/host_resolver_mojo.h » ('j') | net/dns/host_resolver_mojo.h » ('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 804 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 815
816 public_deps = [ 816 public_deps = [
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",
826 "dns/host_resolver_mojo.h",
825 "proxy/mojo_proxy_resolver_impl.cc", 827 "proxy/mojo_proxy_resolver_impl.cc",
826 "proxy/mojo_proxy_resolver_impl.h", 828 "proxy/mojo_proxy_resolver_impl.h",
827 ] 829 ]
828 830
829 public_deps = [ 831 public_deps = [
830 ":mojo_type_converters", 832 ":mojo_type_converters",
831 ":net", 833 ":net",
832 "//mojo/common", 834 "//mojo/common",
833 "//net/interfaces", 835 "//net/interfaces",
834 "//third_party/mojo/src/mojo/public/cpp/bindings", 836 "//third_party/mojo/src/mojo/public/cpp/bindings",
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
1367 1369
1368 if (use_v8_in_net && !is_android) { 1370 if (use_v8_in_net && !is_android) {
1369 deps += [ 1371 deps += [
1370 ":net_browser_services", 1372 ":net_browser_services",
1371 ":net_utility_services", 1373 ":net_utility_services",
1372 "//mojo/environment:chromium", 1374 "//mojo/environment:chromium",
1373 "//third_party/mojo/src/mojo/edk/system", 1375 "//third_party/mojo/src/mojo/edk/system",
1374 ] 1376 ]
1375 } else { 1377 } else {
1376 sources -= [ 1378 sources -= [
1379 "dns/host_resolver_mojo_unittest.cc",
1377 "dns/mojo_host_resolver_impl_unittest.cc", 1380 "dns/mojo_host_resolver_impl_unittest.cc",
1378 "proxy/mojo_proxy_resolver_impl_unittest.cc", 1381 "proxy/mojo_proxy_resolver_impl_unittest.cc",
1379 ] 1382 ]
1380 } 1383 }
1381 1384
1382 if (!enable_mdns) { 1385 if (!enable_mdns) {
1383 sources -= [ 1386 sources -= [
1384 "dns/mdns_cache_unittest.cc", 1387 "dns/mdns_cache_unittest.cc",
1385 "dns/mdns_client_unittest.cc", 1388 "dns/mdns_client_unittest.cc",
1386 "dns/record_parsed_unittest.cc", 1389 "dns/record_parsed_unittest.cc",
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
1467 "quic/quic_server_bin.cc", 1470 "quic/quic_server_bin.cc",
1468 ] 1471 ]
1469 deps = [ 1472 deps = [
1470 ":quic_tools", 1473 ":quic_tools",
1471 ":net", 1474 ":net",
1472 "//base", 1475 "//base",
1473 "//third_party/boringssl", 1476 "//third_party/boringssl",
1474 ] 1477 ]
1475 } 1478 }
1476 } # !is_android && !is_win && !is_mac 1479 } # !is_android && !is_win && !is_mac
OLDNEW
« no previous file with comments | « no previous file | net/dns/host_resolver_mojo.h » ('j') | net/dns/host_resolver_mojo.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698