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

Unified Diff: net/net.gyp

Issue 896203003: Implement utility-side proxy resolver Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@proxy-diffbase
Patch Set: fix windows compile 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/interfaces/proxy_resolver_service.mojom ('k') | net/net.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index 54f90bd4f863bfe5ffe70f9fe076d1cb94d882ee..c56c52883eb192059d1984caed9e96b9d82fc175 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -711,11 +711,13 @@
'dependencies': [
'net_with_v8',
'net_browser_services',
+ 'net_utility_services',
'../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
],
}, { # else
'sources!': [
'dns/mojo_host_resolver_impl_unittest.cc',
+ 'proxy/mojo_proxy_resolver_impl_unittest.cc',
],
},
],
@@ -1275,12 +1277,30 @@
],
},
{
+ # GN version: //net:net_utility_services
+ 'target_name': 'net_utility_services',
+ 'type': 'static_library',
+ 'sources': [
+ 'proxy/mojo_proxy_resolver_impl.cc',
+ 'proxy/mojo_proxy_resolver_impl.h',
+ ],
+ 'dependencies': [
+ 'mojo_type_converters',
+ 'net',
+ 'net_interfaces',
+ '../mojo/mojo_base.gyp:mojo_common_lib',
+ '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
+ ],
+ },
+ {
# GN version: //net:mojo_type_converters
'target_name': 'mojo_type_converters',
'type': 'static_library',
'sources': [
'dns/mojo_type_converters.cc',
'dns/mojo_type_converters.h',
+ 'proxy/mojo_type_converters.cc',
+ 'proxy/mojo_type_converters.h',
],
'dependencies': [
'net',
« no previous file with comments | « net/interfaces/proxy_resolver_service.mojom ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698