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

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') | 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 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
650 "test/ct_test_util.cc", 650 "test/ct_test_util.cc",
651 "test/ct_test_util.h", 651 "test/ct_test_util.h",
652 "test/embedded_test_server/embedded_test_server.cc", 652 "test/embedded_test_server/embedded_test_server.cc",
653 "test/embedded_test_server/embedded_test_server.h", 653 "test/embedded_test_server/embedded_test_server.h",
654 "test/embedded_test_server/http_connection.cc", 654 "test/embedded_test_server/http_connection.cc",
655 "test/embedded_test_server/http_connection.h", 655 "test/embedded_test_server/http_connection.h",
656 "test/embedded_test_server/http_request.cc", 656 "test/embedded_test_server/http_request.cc",
657 "test/embedded_test_server/http_request.h", 657 "test/embedded_test_server/http_request.h",
658 "test/embedded_test_server/http_response.cc", 658 "test/embedded_test_server/http_response.cc",
659 "test/embedded_test_server/http_response.h", 659 "test/embedded_test_server/http_response.h",
660 "test/event_waiter.h",
660 "test/net_test_suite.cc", 661 "test/net_test_suite.cc",
661 "test/net_test_suite.h", 662 "test/net_test_suite.h",
662 "test/python_utils.cc", 663 "test/python_utils.cc",
663 "test/python_utils.h", 664 "test/python_utils.h",
664 "test/spawned_test_server/base_test_server.cc", 665 "test/spawned_test_server/base_test_server.cc",
665 "test/spawned_test_server/base_test_server.h", 666 "test/spawned_test_server/base_test_server.h",
666 "test/spawned_test_server/local_test_server.cc", 667 "test/spawned_test_server/local_test_server.cc",
667 "test/spawned_test_server/local_test_server.h", 668 "test/spawned_test_server/local_test_server.h",
668 "test/spawned_test_server/local_test_server_posix.cc", 669 "test/spawned_test_server/local_test_server_posix.cc",
669 "test/spawned_test_server/local_test_server_win.cc", 670 "test/spawned_test_server/local_test_server_win.cc",
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 815
815 public_deps = [ 816 public_deps = [
816 ":net", 817 ":net",
817 "//net/interfaces", 818 "//net/interfaces",
818 "//third_party/mojo/src/mojo/public/cpp/bindings", 819 "//third_party/mojo/src/mojo/public/cpp/bindings",
819 ] 820 ]
820 } 821 }
821 822
822 source_set("net_utility_services") { 823 source_set("net_utility_services") {
823 sources = [ 824 sources = [
825 "dns/host_resolver_mojo.cc",
826 "dns/host_resolver_mojo.h",
824 "proxy/mojo_proxy_resolver_impl.cc", 827 "proxy/mojo_proxy_resolver_impl.cc",
825 "proxy/mojo_proxy_resolver_impl.h", 828 "proxy/mojo_proxy_resolver_impl.h",
826 ] 829 ]
827 830
828 public_deps = [ 831 public_deps = [
829 ":mojo_type_converters", 832 ":mojo_type_converters",
830 ":net", 833 ":net",
831 "//mojo/common", 834 "//mojo/common",
832 "//net/interfaces", 835 "//net/interfaces",
833 "//third_party/mojo/src/mojo/public/cpp/bindings", 836 "//third_party/mojo/src/mojo/public/cpp/bindings",
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
1385 1388
1386 if (use_v8_in_net && !is_android) { 1389 if (use_v8_in_net && !is_android) {
1387 deps += [ 1390 deps += [
1388 ":net_browser_services", 1391 ":net_browser_services",
1389 ":net_utility_services", 1392 ":net_utility_services",
1390 "//mojo/environment:chromium", 1393 "//mojo/environment:chromium",
1391 "//third_party/mojo/src/mojo/edk/system", 1394 "//third_party/mojo/src/mojo/edk/system",
1392 ] 1395 ]
1393 } else { 1396 } else {
1394 sources -= [ 1397 sources -= [
1398 "dns/host_resolver_mojo_unittest.cc",
1395 "dns/mojo_host_resolver_impl_unittest.cc", 1399 "dns/mojo_host_resolver_impl_unittest.cc",
1396 "proxy/mojo_proxy_resolver_impl_unittest.cc", 1400 "proxy/mojo_proxy_resolver_impl_unittest.cc",
1397 ] 1401 ]
1398 } 1402 }
1399 1403
1400 if (!enable_mdns) { 1404 if (!enable_mdns) {
1401 sources -= [ 1405 sources -= [
1402 "dns/mdns_cache_unittest.cc", 1406 "dns/mdns_cache_unittest.cc",
1403 "dns/mdns_client_unittest.cc", 1407 "dns/mdns_client_unittest.cc",
1404 "dns/record_parsed_unittest.cc", 1408 "dns/record_parsed_unittest.cc",
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
1485 "quic/quic_server_bin.cc", 1489 "quic/quic_server_bin.cc",
1486 ] 1490 ]
1487 deps = [ 1491 deps = [
1488 ":quic_tools", 1492 ":quic_tools",
1489 ":net", 1493 ":net",
1490 "//base", 1494 "//base",
1491 "//third_party/boringssl", 1495 "//third_party/boringssl",
1492 ] 1496 ]
1493 } 1497 }
1494 } # !is_android && !is_win && !is_mac 1498 } # !is_android && !is_win && !is_mac
OLDNEW
« no previous file with comments | « no previous file | net/dns/host_resolver_mojo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698