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

Unified Diff: net/net.gyp

Issue 910343003: Create an in-process v8 proxy resolver using Mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8-pac-complete-patch
Patch Set: Remove extra space. Created 5 years, 9 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/BUILD.gn ('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 540a2ce20c9ebc51597deb2644a6b75a25b5e0ba..b85900713bd0efe4d7f1aaba43074a94e0aa8f2a 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -296,6 +296,7 @@
'proxy/mojo_proxy_resolver_factory_impl_unittest.cc',
'proxy/mojo_proxy_resolver_impl_unittest.cc',
'proxy/proxy_resolver_mojo_unittest.cc',
+ 'proxy/proxy_service_mojo_unittest.cc',
],
},
],
@@ -851,9 +852,13 @@
'sources': [
'dns/mojo_host_resolver_impl.cc',
'dns/mojo_host_resolver_impl.h',
+ 'proxy/in_process_mojo_proxy_resolver_factory.cc',
+ 'proxy/in_process_mojo_proxy_resolver_factory.h',
'proxy/mojo_proxy_resolver_factory.h',
'proxy/proxy_resolver_mojo.cc',
'proxy/proxy_resolver_mojo.h',
+ 'proxy/proxy_service_mojo.cc',
+ 'proxy/proxy_service_mojo.h',
],
'dependencies': [
'mojo_type_converters',
@@ -863,6 +868,13 @@
'../mojo/mojo_base.gyp:mojo_environment_chromium',
'../mojo/mojo_base.gyp:mojo_url_type_converters',
'../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
+
+ # NOTE(amistry): As long as we support in-process Mojo v8 PAC, we
+ # need this dependency since in_process_mojo_proxy_resolver_factory
+ # creates the utility process side Mojo services in the browser
+ # process. Ultimately, this will go away when we only support
+ # out-of-process.
+ 'net_utility_services',
],
},
{
« no previous file with comments | « net/BUILD.gn ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698