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

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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
956 'test/ct_test_util.cc', 957 'test/ct_test_util.cc',
957 'test/ct_test_util.h', 958 'test/ct_test_util.h',
958 'test/embedded_test_server/embedded_test_server.cc', 959 'test/embedded_test_server/embedded_test_server.cc',
959 'test/embedded_test_server/embedded_test_server.h', 960 'test/embedded_test_server/embedded_test_server.h',
960 'test/embedded_test_server/http_connection.cc', 961 'test/embedded_test_server/http_connection.cc',
961 'test/embedded_test_server/http_connection.h', 962 'test/embedded_test_server/http_connection.h',
962 'test/embedded_test_server/http_request.cc', 963 'test/embedded_test_server/http_request.cc',
963 'test/embedded_test_server/http_request.h', 964 'test/embedded_test_server/http_request.h',
964 'test/embedded_test_server/http_response.cc', 965 'test/embedded_test_server/http_response.cc',
965 'test/embedded_test_server/http_response.h', 966 'test/embedded_test_server/http_response.h',
967 'test/event_waiter.h',
966 'test/net_test_suite.cc', 968 'test/net_test_suite.cc',
967 'test/net_test_suite.h', 969 'test/net_test_suite.h',
968 'test/python_utils.cc', 970 'test/python_utils.cc',
969 'test/python_utils.h', 971 'test/python_utils.h',
970 'test/spawned_test_server/base_test_server.cc', 972 'test/spawned_test_server/base_test_server.cc',
971 'test/spawned_test_server/base_test_server.h', 973 'test/spawned_test_server/base_test_server.h',
972 'test/spawned_test_server/local_test_server.cc', 974 'test/spawned_test_server/local_test_server.cc',
973 'test/spawned_test_server/local_test_server.h', 975 'test/spawned_test_server/local_test_server.h',
974 'test/spawned_test_server/local_test_server_posix.cc', 976 'test/spawned_test_server/local_test_server_posix.cc',
975 'test/spawned_test_server/local_test_server_win.cc', 977 'test/spawned_test_server/local_test_server_win.cc',
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
1247 'net_interfaces', 1249 'net_interfaces',
1248 '../mojo/mojo_base.gyp:mojo_environment_chromium', 1250 '../mojo/mojo_base.gyp:mojo_environment_chromium',
1249 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 1251 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
1250 ], 1252 ],
1251 }, 1253 },
1252 { 1254 {
1253 # GN version: //net:net_utility_services 1255 # GN version: //net:net_utility_services
1254 'target_name': 'net_utility_services', 1256 'target_name': 'net_utility_services',
1255 'type': 'static_library', 1257 'type': 'static_library',
1256 'sources': [ 1258 'sources': [
1259 'dns/host_resolver_mojo.cc',
1260 'dns/host_resolver_mojo.h',
1257 'proxy/mojo_proxy_resolver_impl.cc', 1261 'proxy/mojo_proxy_resolver_impl.cc',
1258 'proxy/mojo_proxy_resolver_impl.h', 1262 'proxy/mojo_proxy_resolver_impl.h',
1259 ], 1263 ],
1260 'dependencies': [ 1264 'dependencies': [
1261 'mojo_type_converters', 1265 'mojo_type_converters',
1262 'net', 1266 'net',
1263 'net_interfaces', 1267 'net_interfaces',
1264 '../mojo/mojo_base.gyp:mojo_common_lib', 1268 '../mojo/mojo_base.gyp:mojo_common_lib',
1265 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 1269 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
1266 ], 1270 ],
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
1829 '../build/isolate.gypi', 1833 '../build/isolate.gypi',
1830 ], 1834 ],
1831 'sources': [ 1835 'sources': [
1832 'net_unittests.isolate', 1836 'net_unittests.isolate',
1833 ], 1837 ],
1834 }, 1838 },
1835 ], 1839 ],
1836 }], 1840 }],
1837 ], 1841 ],
1838 } 1842 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698