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

Side by Side Diff: net/net.gyp

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: Lazily connect to Mojo service and don't automatically set PAC script when reconnecting. 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 unified diff | Download patch
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 'net_browser_services', 713 'net_browser_services',
714 'net_utility_services', 714 'net_utility_services',
715 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl', 715 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
716 ], 716 ],
717 }, { # else 717 }, { # else
718 'sources!': [ 718 'sources!': [
719 'dns/host_resolver_mojo_unittest.cc', 719 'dns/host_resolver_mojo_unittest.cc',
720 'dns/mojo_host_resolver_impl_unittest.cc', 720 'dns/mojo_host_resolver_impl_unittest.cc',
721 'proxy/mojo_proxy_resolver_factory_impl_unittest.cc', 721 'proxy/mojo_proxy_resolver_factory_impl_unittest.cc',
722 'proxy/mojo_proxy_resolver_impl_unittest.cc', 722 'proxy/mojo_proxy_resolver_impl_unittest.cc',
723 'proxy/proxy_resolver_mojo_unittest.cc',
723 ], 724 ],
724 }, 725 },
725 ], 726 ],
726 727
727 [ 'enable_mdns != 1', { 728 [ 'enable_mdns != 1', {
728 'sources!' : [ 729 'sources!' : [
729 'dns/mdns_cache_unittest.cc', 730 'dns/mdns_cache_unittest.cc',
730 'dns/mdns_client_unittest.cc', 731 'dns/mdns_client_unittest.cc',
731 'dns/mdns_query_unittest.cc', 732 'dns/mdns_query_unittest.cc',
732 'dns/record_parsed_unittest.cc', 733 'dns/record_parsed_unittest.cc',
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
1263 '../third_party/mojo/mojom_bindings_generator.gypi', 1264 '../third_party/mojo/mojom_bindings_generator.gypi',
1264 ], 1265 ],
1265 }, 1266 },
1266 { 1267 {
1267 # GN version: //net:net_browser_services 1268 # GN version: //net:net_browser_services
1268 'target_name': 'net_browser_services', 1269 'target_name': 'net_browser_services',
1269 'type': 'static_library', 1270 'type': 'static_library',
1270 'sources': [ 1271 'sources': [
1271 'dns/mojo_host_resolver_impl.cc', 1272 'dns/mojo_host_resolver_impl.cc',
1272 'dns/mojo_host_resolver_impl.h', 1273 'dns/mojo_host_resolver_impl.h',
1274 'proxy/mojo_proxy_resolver_factory.h',
1275 'proxy/proxy_resolver_mojo.cc',
1276 'proxy/proxy_resolver_mojo.h',
1273 ], 1277 ],
1274 'dependencies': [ 1278 'dependencies': [
1275 'mojo_type_converters', 1279 'mojo_type_converters',
1276 'net', 1280 'net',
1277 'net_interfaces', 1281 'net_interfaces',
1278 '../mojo/mojo_base.gyp:mojo_environment_chromium', 1282 '../mojo/mojo_base.gyp:mojo_environment_chromium',
1279 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 1283 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
1280 ], 1284 ],
1281 }, 1285 },
1282 { 1286 {
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
1863 '../build/isolate.gypi', 1867 '../build/isolate.gypi',
1864 ], 1868 ],
1865 'sources': [ 1869 'sources': [
1866 'net_unittests.isolate', 1870 'net_unittests.isolate',
1867 ], 1871 ],
1868 }, 1872 },
1869 ], 1873 ],
1870 }], 1874 }],
1871 ], 1875 ],
1872 } 1876 }
OLDNEW
« no previous file with comments | « net/base/net_error_list.h ('k') | net/net.gypi » ('j') | net/proxy/proxy_resolver_mojo.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698