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

Side by Side Diff: net/net.gyp

Issue 904313003: Implement utility-side host resolver Mojo client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-proxy-resolver
Patch Set: 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
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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 710
711 [ 'use_v8_in_net==1 and OS != "android"', { 711 [ 'use_v8_in_net==1 and OS != "android"', {
712 'dependencies': [ 712 'dependencies': [
713 'net_with_v8', 713 'net_with_v8',
714 'net_browser_services', 714 'net_browser_services',
715 'net_utility_services', 715 'net_utility_services',
716 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl', 716 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
717 ], 717 ],
718 }, { # else 718 }, { # else
719 'sources!': [ 719 'sources!': [
720 'dns/host_resolver_mojo_unittest.cc',
720 'dns/mojo_host_resolver_impl_unittest.cc', 721 'dns/mojo_host_resolver_impl_unittest.cc',
721 'proxy/mojo_proxy_resolver_impl_unittest.cc', 722 'proxy/mojo_proxy_resolver_impl_unittest.cc',
722 ], 723 ],
723 }, 724 },
724 ], 725 ],
725 726
726 [ 'enable_mdns != 1', { 727 [ 'enable_mdns != 1', {
727 'sources!' : [ 728 'sources!' : [
728 'dns/mdns_cache_unittest.cc', 729 'dns/mdns_cache_unittest.cc',
729 'dns/mdns_client_unittest.cc', 730 'dns/mdns_client_unittest.cc',
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
1247 'net_interfaces', 1248 'net_interfaces',
1248 '../mojo/mojo_base.gyp:mojo_environment_chromium', 1249 '../mojo/mojo_base.gyp:mojo_environment_chromium',
1249 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 1250 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
1250 ], 1251 ],
1251 }, 1252 },
1252 { 1253 {
1253 # GN version: //net:net_utility_services 1254 # GN version: //net:net_utility_services
1254 'target_name': 'net_utility_services', 1255 'target_name': 'net_utility_services',
1255 'type': 'static_library', 1256 'type': 'static_library',
1256 'sources': [ 1257 'sources': [
1258 'dns/host_resolver_mojo.cc',
1259 'dns/host_resolver_mojo.h',
1257 'proxy/mojo_proxy_resolver_impl.cc', 1260 'proxy/mojo_proxy_resolver_impl.cc',
1258 'proxy/mojo_proxy_resolver_impl.h', 1261 'proxy/mojo_proxy_resolver_impl.h',
1259 ], 1262 ],
1260 'dependencies': [ 1263 'dependencies': [
1261 'mojo_type_converters', 1264 'mojo_type_converters',
1262 'net', 1265 'net',
1263 'net_interfaces', 1266 'net_interfaces',
1264 '../mojo/mojo_base.gyp:mojo_common_lib', 1267 '../mojo/mojo_base.gyp:mojo_common_lib',
1265 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 1268 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
1266 ], 1269 ],
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
1829 '../build/isolate.gypi', 1832 '../build/isolate.gypi',
1830 ], 1833 ],
1831 'sources': [ 1834 'sources': [
1832 'net_unittests.isolate', 1835 'net_unittests.isolate',
1833 ], 1836 ],
1834 }, 1837 },
1835 ], 1838 ],
1836 }], 1839 }],
1837 ], 1840 ],
1838 } 1841 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698