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

Side by Side Diff: net/net.gyp

Issue 7518028: DnsConfigService and a posix implementation (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Deflaked test. Addressed memory leaks and comments. Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'use_kerberos%': 1, 9 'use_kerberos%': 1,
10 }, 10 },
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 'disk_cache/stats.cc', 283 'disk_cache/stats.cc',
284 'disk_cache/stats.h', 284 'disk_cache/stats.h',
285 'disk_cache/stats_histogram.cc', 285 'disk_cache/stats_histogram.cc',
286 'disk_cache/stats_histogram.h', 286 'disk_cache/stats_histogram.h',
287 'disk_cache/storage_block-inl.h', 287 'disk_cache/storage_block-inl.h',
288 'disk_cache/storage_block.h', 288 'disk_cache/storage_block.h',
289 'disk_cache/trace.cc', 289 'disk_cache/trace.cc',
290 'disk_cache/trace.h', 290 'disk_cache/trace.h',
291 'dns/async_host_resolver.cc', 291 'dns/async_host_resolver.cc',
292 'dns/async_host_resolver.h', 292 'dns/async_host_resolver.h',
293 'dns/dns_config_service.cc',
294 'dns/dns_config_service.h',
295 'dns/dns_config_service_posix.cc',
296 'dns/dns_config_service_posix.h',
293 'dns/dns_query.cc', 297 'dns/dns_query.cc',
294 'dns/dns_query.h', 298 'dns/dns_query.h',
295 'dns/dns_response.cc', 299 'dns/dns_response.cc',
296 'dns/dns_response.h', 300 'dns/dns_response.h',
297 'dns/dns_transaction.cc', 301 'dns/dns_transaction.cc',
298 'dns/dns_transaction.h', 302 'dns/dns_transaction.h',
299 'ftp/ftp_auth_cache.cc', 303 'ftp/ftp_auth_cache.cc',
300 'ftp/ftp_auth_cache.h', 304 'ftp/ftp_auth_cache.h',
301 'ftp/ftp_ctrl_response_buffer.cc', 305 'ftp/ftp_ctrl_response_buffer.cc',
302 'ftp/ftp_ctrl_response_buffer.h', 306 'ftp/ftp_ctrl_response_buffer.h',
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after
934 'disk_cache/backend_unittest.cc', 938 'disk_cache/backend_unittest.cc',
935 'disk_cache/bitmap_unittest.cc', 939 'disk_cache/bitmap_unittest.cc',
936 'disk_cache/block_files_unittest.cc', 940 'disk_cache/block_files_unittest.cc',
937 'disk_cache/cache_util_unittest.cc', 941 'disk_cache/cache_util_unittest.cc',
938 'disk_cache/disk_cache_test_base.cc', 942 'disk_cache/disk_cache_test_base.cc',
939 'disk_cache/disk_cache_test_base.h', 943 'disk_cache/disk_cache_test_base.h',
940 'disk_cache/entry_unittest.cc', 944 'disk_cache/entry_unittest.cc',
941 'disk_cache/mapped_file_unittest.cc', 945 'disk_cache/mapped_file_unittest.cc',
942 'disk_cache/storage_block_unittest.cc', 946 'disk_cache/storage_block_unittest.cc',
943 'dns/async_host_resolver_unittest.cc', 947 'dns/async_host_resolver_unittest.cc',
948 'dns/dns_config_service_posix_unittest.cc',
944 'dns/dns_query_unittest.cc', 949 'dns/dns_query_unittest.cc',
945 'dns/dns_response_unittest.cc', 950 'dns/dns_response_unittest.cc',
946 'dns/dns_transaction_unittest.cc', 951 'dns/dns_transaction_unittest.cc',
947 'ftp/ftp_auth_cache_unittest.cc', 952 'ftp/ftp_auth_cache_unittest.cc',
948 'ftp/ftp_ctrl_response_buffer_unittest.cc', 953 'ftp/ftp_ctrl_response_buffer_unittest.cc',
949 'ftp/ftp_directory_listing_parser_ls_unittest.cc', 954 'ftp/ftp_directory_listing_parser_ls_unittest.cc',
950 'ftp/ftp_directory_listing_parser_netware_unittest.cc', 955 'ftp/ftp_directory_listing_parser_netware_unittest.cc',
951 'ftp/ftp_directory_listing_parser_os2_unittest.cc', 956 'ftp/ftp_directory_listing_parser_os2_unittest.cc',
952 'ftp/ftp_directory_listing_parser_unittest.cc', 957 'ftp/ftp_directory_listing_parser_unittest.cc',
953 'ftp/ftp_directory_listing_parser_vms_unittest.cc', 958 'ftp/ftp_directory_listing_parser_vms_unittest.cc',
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
1101 # TODO(bulach): Add equivalent tests when the underlying 1106 # TODO(bulach): Add equivalent tests when the underlying
1102 # functionality is ported to OpenSSL. 1107 # functionality is ported to OpenSSL.
1103 'sources!': [ 1108 'sources!': [
1104 'base/cert_database_nss_unittest.cc', 1109 'base/cert_database_nss_unittest.cc',
1105 'base/dnssec_unittest.cc', 1110 'base/dnssec_unittest.cc',
1106 ], 1111 ],
1107 }, 1112 },
1108 ], 1113 ],
1109 [ 'OS == "win"', { 1114 [ 'OS == "win"', {
1110 'sources!': [ 1115 'sources!': [
1116 'dns/dns_config_service_posix_unittest.cc',
1111 'http/http_auth_gssapi_posix_unittest.cc', 1117 'http/http_auth_gssapi_posix_unittest.cc',
1112 ], 1118 ],
1113 # This is needed to trigger the dll copy step on windows. 1119 # This is needed to trigger the dll copy step on windows.
1114 # TODO(mark): Specifying this here shouldn't be necessary. 1120 # TODO(mark): Specifying this here shouldn't be necessary.
1115 'dependencies': [ 1121 'dependencies': [
1116 '../third_party/icu/icu.gyp:icudata', 1122 '../third_party/icu/icu.gyp:icudata',
1117 ], 1123 ],
1118 }, 1124 },
1119 ], 1125 ],
1120 ], 1126 ],
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
1513 'tools/dump_cache/url_to_filename_encoder.cc', 1519 'tools/dump_cache/url_to_filename_encoder.cc',
1514 'tools/dump_cache/url_to_filename_encoder.h', 1520 'tools/dump_cache/url_to_filename_encoder.h',
1515 'tools/dump_cache/url_utilities.h', 1521 'tools/dump_cache/url_utilities.h',
1516 'tools/dump_cache/url_utilities.cc', 1522 'tools/dump_cache/url_utilities.cc',
1517 ], 1523 ],
1518 }, 1524 },
1519 ], 1525 ],
1520 }], 1526 }],
1521 ], 1527 ],
1522 } 1528 }
OLDNEW
« net/dns/dns_config_service_posix.cc ('K') | « net/dns/dns_config_service_posix_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698