| 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 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 "dns/mojo_host_resolver_impl.cc", | 705 "dns/mojo_host_resolver_impl.cc", |
| 706 "dns/mojo_host_resolver_impl.h", | 706 "dns/mojo_host_resolver_impl.h", |
| 707 "proxy/mojo_proxy_resolver_factory.h", | 707 "proxy/mojo_proxy_resolver_factory.h", |
| 708 "proxy/proxy_resolver_factory_mojo.cc", | 708 "proxy/proxy_resolver_factory_mojo.cc", |
| 709 "proxy/proxy_resolver_factory_mojo.h", | 709 "proxy/proxy_resolver_factory_mojo.h", |
| 710 "proxy/proxy_service_mojo.cc", | 710 "proxy/proxy_service_mojo.cc", |
| 711 "proxy/proxy_service_mojo.h", | 711 "proxy/proxy_service_mojo.h", |
| 712 ] | 712 ] |
| 713 | 713 |
| 714 public_deps = [ | 714 public_deps = [ |
| 715 ":net_with_v8", | 715 ":net", |
| 716 "//base", | 716 "//base", |
| 717 "//mojo/public/cpp/bindings", | 717 "//mojo/public/cpp/bindings", |
| 718 "//net/interfaces", | 718 "//net/interfaces", |
| 719 ] | 719 ] |
| 720 } | 720 } |
| 721 | 721 |
| 722 source_set("net_utility_services") { | 722 source_set("net_utility_services") { |
| 723 sources = [ | 723 sources = [ |
| 724 "dns/host_resolver_mojo.cc", | 724 "dns/host_resolver_mojo.cc", |
| 725 "dns/host_resolver_mojo.h", | 725 "dns/host_resolver_mojo.h", |
| (...skipping 1357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2083 if (host_toolchain == current_toolchain) { | 2083 if (host_toolchain == current_toolchain) { |
| 2084 executable("domain_security_preload_generator") { | 2084 executable("domain_security_preload_generator") { |
| 2085 sources = gypi_values.net_domain_security_state_generator_sources | 2085 sources = gypi_values.net_domain_security_state_generator_sources |
| 2086 deps = [ | 2086 deps = [ |
| 2087 "//base", | 2087 "//base", |
| 2088 "//crypto", | 2088 "//crypto", |
| 2089 "//third_party/boringssl", | 2089 "//third_party/boringssl", |
| 2090 ] | 2090 ] |
| 2091 } | 2091 } |
| 2092 } | 2092 } |
| OLD | NEW |