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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « net/interfaces/proxy_resolver_service.mojom ('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 693 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 'proxy/proxy_resolver_v8_tracing_unittest.cc', 704 'proxy/proxy_resolver_v8_tracing_unittest.cc',
705 'proxy/proxy_resolver_v8_unittest.cc', 705 'proxy/proxy_resolver_v8_unittest.cc',
706 ], 706 ],
707 }, 707 },
708 ], 708 ],
709 709
710 [ 'use_v8_in_net==1 and OS != "android"', { 710 [ 'use_v8_in_net==1 and OS != "android"', {
711 'dependencies': [ 711 'dependencies': [
712 'net_with_v8', 712 'net_with_v8',
713 'net_browser_services', 713 'net_browser_services',
714 'net_utility_services',
714 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl', 715 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
715 ], 716 ],
716 }, { # else 717 }, { # else
717 'sources!': [ 718 'sources!': [
718 'dns/mojo_host_resolver_impl_unittest.cc', 719 'dns/mojo_host_resolver_impl_unittest.cc',
720 'proxy/mojo_proxy_resolver_impl_unittest.cc',
719 ], 721 ],
720 }, 722 },
721 ], 723 ],
722 724
723 [ 'enable_mdns != 1', { 725 [ 'enable_mdns != 1', {
724 'sources!' : [ 726 'sources!' : [
725 'dns/mdns_cache_unittest.cc', 727 'dns/mdns_cache_unittest.cc',
726 'dns/mdns_client_unittest.cc', 728 'dns/mdns_client_unittest.cc',
727 'dns/mdns_query_unittest.cc', 729 'dns/mdns_query_unittest.cc',
728 'dns/record_parsed_unittest.cc', 730 'dns/record_parsed_unittest.cc',
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
1268 ], 1270 ],
1269 'dependencies': [ 1271 'dependencies': [
1270 'mojo_type_converters', 1272 'mojo_type_converters',
1271 'net', 1273 'net',
1272 'net_interfaces', 1274 'net_interfaces',
1273 '../mojo/mojo_base.gyp:mojo_environment_chromium', 1275 '../mojo/mojo_base.gyp:mojo_environment_chromium',
1274 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 1276 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
1275 ], 1277 ],
1276 }, 1278 },
1277 { 1279 {
1280 # GN version: //net:net_utility_services
1281 'target_name': 'net_utility_services',
1282 'type': 'static_library',
1283 'sources': [
1284 'proxy/mojo_proxy_resolver_impl.cc',
1285 'proxy/mojo_proxy_resolver_impl.h',
1286 ],
1287 'dependencies': [
1288 'mojo_type_converters',
1289 'net',
1290 'net_interfaces',
1291 '../mojo/mojo_base.gyp:mojo_common_lib',
1292 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
1293 ],
1294 },
1295 {
1278 # GN version: //net:mojo_type_converters 1296 # GN version: //net:mojo_type_converters
1279 'target_name': 'mojo_type_converters', 1297 'target_name': 'mojo_type_converters',
1280 'type': 'static_library', 1298 'type': 'static_library',
1281 'sources': [ 1299 'sources': [
1282 'dns/mojo_type_converters.cc', 1300 'dns/mojo_type_converters.cc',
1283 'dns/mojo_type_converters.h', 1301 'dns/mojo_type_converters.h',
1302 'proxy/mojo_type_converters.cc',
1303 'proxy/mojo_type_converters.h',
1284 ], 1304 ],
1285 'dependencies': [ 1305 'dependencies': [
1286 'net', 1306 'net',
1287 'net_interfaces', 1307 'net_interfaces',
1288 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 1308 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
1289 ], 1309 ],
1290 }, 1310 },
1291 ], 1311 ],
1292 }], 1312 }],
1293 ['OS != "ios" and OS != "android"', { 1313 ['OS != "ios" and OS != "android"', {
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
1836 '../build/isolate.gypi', 1856 '../build/isolate.gypi',
1837 ], 1857 ],
1838 'sources': [ 1858 'sources': [
1839 'net_unittests.isolate', 1859 'net_unittests.isolate',
1840 ], 1860 ],
1841 }, 1861 },
1842 ], 1862 ],
1843 }], 1863 }],
1844 ], 1864 ],
1845 } 1865 }
OLDNEW
« 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