OLD | NEW |
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 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 "//v8", | 788 "//v8", |
789 ] | 789 ] |
790 } | 790 } |
791 } | 791 } |
792 | 792 |
793 if (use_v8_in_net && !is_android) { | 793 if (use_v8_in_net && !is_android) { |
794 source_set("net_browser_services") { | 794 source_set("net_browser_services") { |
795 sources = [ | 795 sources = [ |
796 "dns/mojo_host_resolver_impl.cc", | 796 "dns/mojo_host_resolver_impl.cc", |
797 "dns/mojo_host_resolver_impl.h", | 797 "dns/mojo_host_resolver_impl.h", |
| 798 "proxy/mojo_proxy_resolver_factory.h", |
| 799 "proxy/proxy_resolver_mojo.cc", |
| 800 "proxy/proxy_resolver_mojo.h", |
798 ] | 801 ] |
799 | 802 |
800 public_deps = [ | 803 public_deps = [ |
801 ":mojo_type_converters", | 804 ":mojo_type_converters", |
802 ":net", | 805 ":net", |
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 } |
807 | 810 |
(...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |
OLD | NEW |