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

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.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 803 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 ] 814 ]
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 static_library("net_utility_services") { 822 static_library("net_utility_services") {
823 sources = [ 823 sources = [
824 "dns/host_resolver_mojo.cc",
825 "dns/host_resolver_mojo.h",
824 "proxy/mojo_proxy_resolver_impl.cc", 826 "proxy/mojo_proxy_resolver_impl.cc",
825 "proxy/mojo_proxy_resolver_impl.h", 827 "proxy/mojo_proxy_resolver_impl.h",
826 ] 828 ]
827 829
828 public_deps = [ 830 public_deps = [
829 ":net", 831 ":net",
830 ":type_converters", 832 ":type_converters",
831 "//mojo/common", 833 "//mojo/common",
832 "//net/interfaces", 834 "//net/interfaces",
833 "//third_party/mojo/src/mojo/public/cpp/bindings", 835 "//third_party/mojo/src/mojo/public/cpp/bindings",
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
1366 1368
1367 if (use_v8_in_net && !is_android) { 1369 if (use_v8_in_net && !is_android) {
1368 deps += [ 1370 deps += [
1369 ":net_browser_services", 1371 ":net_browser_services",
1370 ":net_utility_services", 1372 ":net_utility_services",
1371 "//mojo/environment:chromium", 1373 "//mojo/environment:chromium",
1372 "//third_party/mojo/src/mojo/edk/system", 1374 "//third_party/mojo/src/mojo/edk/system",
1373 ] 1375 ]
1374 } else { 1376 } else {
1375 sources -= [ 1377 sources -= [
1378 "dns/host_resolver_mojo_unittest.cc",
1376 "dns/mojo_host_resolver_impl_unittest.cc", 1379 "dns/mojo_host_resolver_impl_unittest.cc",
1377 "proxy/mojo_proxy_resolver_impl_unittest.cc", 1380 "proxy/mojo_proxy_resolver_impl_unittest.cc",
1378 ] 1381 ]
1379 } 1382 }
1380 1383
1381 if (!enable_mdns) { 1384 if (!enable_mdns) {
1382 sources -= [ 1385 sources -= [
1383 "dns/mdns_cache_unittest.cc", 1386 "dns/mdns_cache_unittest.cc",
1384 "dns/mdns_client_unittest.cc", 1387 "dns/mdns_client_unittest.cc",
1385 "dns/record_parsed_unittest.cc", 1388 "dns/record_parsed_unittest.cc",
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
1466 "quic/quic_server_bin.cc", 1469 "quic/quic_server_bin.cc",
1467 ] 1470 ]
1468 deps = [ 1471 deps = [
1469 ":quic_tools", 1472 ":quic_tools",
1470 ":net", 1473 ":net",
1471 "//base", 1474 "//base",
1472 "//third_party/boringssl", 1475 "//third_party/boringssl",
1473 ] 1476 ]
1474 } 1477 }
1475 } # !is_android && !is_win && !is_mac 1478 } # !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.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698