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

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: Fix build. 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
« no previous file with comments | « net/base/net_error_list.h ('k') | net/net.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 'net_browser_services', 715 'net_browser_services',
716 'net_utility_services', 716 'net_utility_services',
717 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl', 717 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
718 ], 718 ],
719 }, { # else 719 }, { # else
720 'sources!': [ 720 'sources!': [
721 'dns/host_resolver_mojo_unittest.cc', 721 'dns/host_resolver_mojo_unittest.cc',
722 'dns/mojo_host_resolver_impl_unittest.cc', 722 'dns/mojo_host_resolver_impl_unittest.cc',
723 'proxy/mojo_proxy_resolver_factory_impl_unittest.cc', 723 'proxy/mojo_proxy_resolver_factory_impl_unittest.cc',
724 'proxy/mojo_proxy_resolver_impl_unittest.cc', 724 'proxy/mojo_proxy_resolver_impl_unittest.cc',
725 'proxy/proxy_resolver_mojo_unittest.cc',
725 ], 726 ],
726 }, 727 },
727 ], 728 ],
728 729
729 [ 'enable_mdns != 1', { 730 [ 'enable_mdns != 1', {
730 'sources!' : [ 731 'sources!' : [
731 'dns/mdns_cache_unittest.cc', 732 'dns/mdns_cache_unittest.cc',
732 'dns/mdns_client_unittest.cc', 733 'dns/mdns_client_unittest.cc',
733 'dns/mdns_query_unittest.cc', 734 'dns/mdns_query_unittest.cc',
734 'dns/record_parsed_unittest.cc', 735 'dns/record_parsed_unittest.cc',
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
1270 '../third_party/mojo/mojom_bindings_generator.gypi', 1271 '../third_party/mojo/mojom_bindings_generator.gypi',
1271 ], 1272 ],
1272 }, 1273 },
1273 { 1274 {
1274 # GN version: //net:net_browser_services 1275 # GN version: //net:net_browser_services
1275 'target_name': 'net_browser_services', 1276 'target_name': 'net_browser_services',
1276 'type': 'static_library', 1277 'type': 'static_library',
1277 'sources': [ 1278 'sources': [
1278 'dns/mojo_host_resolver_impl.cc', 1279 'dns/mojo_host_resolver_impl.cc',
1279 'dns/mojo_host_resolver_impl.h', 1280 'dns/mojo_host_resolver_impl.h',
1281 'proxy/mojo_proxy_resolver_factory.h',
1282 'proxy/proxy_resolver_mojo.cc',
1283 'proxy/proxy_resolver_mojo.h',
1280 ], 1284 ],
1281 'dependencies': [ 1285 'dependencies': [
1282 'mojo_type_converters', 1286 'mojo_type_converters',
1283 'net', 1287 'net',
1284 'net_interfaces', 1288 'net_interfaces',
1289 '../mojo/mojo_base.gyp:mojo_common_lib',
1285 '../mojo/mojo_base.gyp:mojo_environment_chromium', 1290 '../mojo/mojo_base.gyp:mojo_environment_chromium',
1291 '../mojo/mojo_base.gyp:mojo_url_type_converters',
1286 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 1292 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
1287 ], 1293 ],
1288 }, 1294 },
1289 { 1295 {
1290 # GN version: //net:net_utility_services 1296 # GN version: //net:net_utility_services
1291 'target_name': 'net_utility_services', 1297 'target_name': 'net_utility_services',
1292 'type': 'static_library', 1298 'type': 'static_library',
1293 'sources': [ 1299 'sources': [
1294 'dns/host_resolver_mojo.cc', 1300 'dns/host_resolver_mojo.cc',
1295 'dns/host_resolver_mojo.h', 1301 'dns/host_resolver_mojo.h',
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
1870 '../build/isolate.gypi', 1876 '../build/isolate.gypi',
1871 ], 1877 ],
1872 'sources': [ 1878 'sources': [
1873 'net_unittests.isolate', 1879 'net_unittests.isolate',
1874 ], 1880 ],
1875 }, 1881 },
1876 ], 1882 ],
1877 }], 1883 }],
1878 ], 1884 ],
1879 } 1885 }
OLDNEW
« no previous file with comments | « net/base/net_error_list.h ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698