| 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 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 784 "//v8", | 784 "//v8", |
| 785 ] | 785 ] |
| 786 } | 786 } |
| 787 } | 787 } |
| 788 | 788 |
| 789 if (use_v8_in_net && !is_android) { | 789 if (use_v8_in_net && !is_android) { |
| 790 source_set("net_browser_services") { | 790 source_set("net_browser_services") { |
| 791 sources = [ | 791 sources = [ |
| 792 "dns/mojo_host_resolver_impl.cc", | 792 "dns/mojo_host_resolver_impl.cc", |
| 793 "dns/mojo_host_resolver_impl.h", | 793 "dns/mojo_host_resolver_impl.h", |
| 794 "proxy/mojo_proxy_resolver_factory.h", |
| 795 "proxy/proxy_resolver_mojo.cc", |
| 796 "proxy/proxy_resolver_mojo.h", |
| 794 ] | 797 ] |
| 795 | 798 |
| 796 public_deps = [ | 799 public_deps = [ |
| 797 ":mojo_type_converters", | 800 ":mojo_type_converters", |
| 798 ":net", | 801 ":net", |
| 799 "//net/interfaces", | 802 "//net/interfaces", |
| 800 "//third_party/mojo/src/mojo/public/cpp/bindings", | 803 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 801 ] | 804 ] |
| 802 } | 805 } |
| 803 | 806 |
| (...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1476 "quic/quic_server_bin.cc", | 1479 "quic/quic_server_bin.cc", |
| 1477 ] | 1480 ] |
| 1478 deps = [ | 1481 deps = [ |
| 1479 ":quic_tools", | 1482 ":quic_tools", |
| 1480 ":net", | 1483 ":net", |
| 1481 "//base", | 1484 "//base", |
| 1482 "//third_party/boringssl", | 1485 "//third_party/boringssl", |
| 1483 ] | 1486 ] |
| 1484 } | 1487 } |
| 1485 } # !is_android && !is_win && !is_mac | 1488 } # !is_android && !is_win && !is_mac |
| OLD | NEW |