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

Side by Side Diff: net/BUILD.gn

Issue 917863005: Implementation of ProxyResolver that uses a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sam-v8-pac-utility-proxy
Patch Set: Rebase 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/net.gyp » ('j') | net/net.gypi » ('J')
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 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « no previous file | net/net.gyp » ('j') | net/net.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698