| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 "proxy/mojo_proxy_resolver_factory.h", | 733 "proxy/mojo_proxy_resolver_factory.h", |
| 734 "proxy/proxy_resolver_factory_mojo.cc", | 734 "proxy/proxy_resolver_factory_mojo.cc", |
| 735 "proxy/proxy_resolver_factory_mojo.h", | 735 "proxy/proxy_resolver_factory_mojo.h", |
| 736 "proxy/proxy_service_mojo.cc", | 736 "proxy/proxy_service_mojo.cc", |
| 737 "proxy/proxy_service_mojo.h", | 737 "proxy/proxy_service_mojo.h", |
| 738 ] | 738 ] |
| 739 | 739 |
| 740 public_deps = [ | 740 public_deps = [ |
| 741 ":net_with_v8", | 741 ":net_with_v8", |
| 742 "//base", | 742 "//base", |
| 743 "//mojo/common", | |
| 744 "//mojo/public/cpp/bindings", | 743 "//mojo/public/cpp/bindings", |
| 745 "//net/interfaces", | 744 "//net/interfaces", |
| 746 | 745 |
| 747 # NOTE(amistry): As long as we support in-process Mojo v8 PAC, we need | 746 # NOTE(amistry): As long as we support in-process Mojo v8 PAC, we need |
| 748 # this dependency since in_process_mojo_proxy_resolver_factory creates | 747 # this dependency since in_process_mojo_proxy_resolver_factory creates |
| 749 # the utility process side Mojo services in the browser process. | 748 # the utility process side Mojo services in the browser process. |
| 750 # Ultimately, this will go away when we only support out-of-process. | 749 # Ultimately, this will go away when we only support out-of-process. |
| 751 ":net_utility_services", | 750 ":net_utility_services", |
| 752 ] | 751 ] |
| 753 } | 752 } |
| 754 | 753 |
| 755 source_set("net_utility_services") { | 754 source_set("net_utility_services") { |
| 756 sources = [ | 755 sources = [ |
| 757 "dns/host_resolver_mojo.cc", | 756 "dns/host_resolver_mojo.cc", |
| 758 "dns/host_resolver_mojo.h", | 757 "dns/host_resolver_mojo.h", |
| 759 "proxy/mojo_proxy_resolver_factory_impl.cc", | 758 "proxy/mojo_proxy_resolver_factory_impl.cc", |
| 760 "proxy/mojo_proxy_resolver_factory_impl.h", | 759 "proxy/mojo_proxy_resolver_factory_impl.h", |
| 761 "proxy/mojo_proxy_resolver_impl.cc", | 760 "proxy/mojo_proxy_resolver_impl.cc", |
| 762 "proxy/mojo_proxy_resolver_impl.h", | 761 "proxy/mojo_proxy_resolver_impl.h", |
| 763 "proxy/mojo_proxy_resolver_v8_tracing_bindings.h", | 762 "proxy/mojo_proxy_resolver_v8_tracing_bindings.h", |
| 764 ] | 763 ] |
| 765 | 764 |
| 766 deps = [ | 765 deps = [ |
| 767 ":net_with_v8", | 766 ":net_with_v8", |
| 768 "//base", | 767 "//base", |
| 769 ] | 768 ] |
| 770 | 769 |
| 771 public_deps = [ | 770 public_deps = [ |
| 772 ":net", | 771 ":net", |
| 773 "//mojo/common", | |
| 774 "//mojo/public/cpp/bindings", | 772 "//mojo/public/cpp/bindings", |
| 775 "//net/interfaces", | 773 "//net/interfaces", |
| 776 ] | 774 ] |
| 777 } | 775 } |
| 778 } | 776 } |
| 779 | 777 |
| 780 if (!is_ios && !is_android) { | 778 if (!is_ios && !is_android) { |
| 781 executable("cert_verify_tool") { | 779 executable("cert_verify_tool") { |
| 782 testonly = true | 780 testonly = true |
| 783 sources = [ | 781 sources = [ |
| (...skipping 1253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2037 sources = [ | 2035 sources = [ |
| 2038 "http/http_auth_challenge_tokenizer_fuzzer.cc", | 2036 "http/http_auth_challenge_tokenizer_fuzzer.cc", |
| 2039 ] | 2037 ] |
| 2040 deps = [ | 2038 deps = [ |
| 2041 ":net_fuzzer_test_support", | 2039 ":net_fuzzer_test_support", |
| 2042 ":test_support", | 2040 ":test_support", |
| 2043 "//base", | 2041 "//base", |
| 2044 "//net", | 2042 "//net", |
| 2045 ] | 2043 ] |
| 2046 } | 2044 } |
| OLD | NEW |