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

Side by Side Diff: net/net.gyp

Issue 465035: Split FTP LIST parsing code into individual files for each listing style. (Closed)
Patch Set: fix Created 11 years 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/ftp/ftp_util.cc ('k') | webkit/glue/ftp_directory_listing_response_delegate.cc » ('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 (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 'flip/flip_session_pool.h', 287 'flip/flip_session_pool.h',
288 'flip/flip_stream.cc', 288 'flip/flip_stream.cc',
289 'flip/flip_stream.h', 289 'flip/flip_stream.h',
290 'flip/flip_transaction_factory.h', 290 'flip/flip_transaction_factory.h',
291 'ftp/ftp_auth_cache.cc', 291 'ftp/ftp_auth_cache.cc',
292 'ftp/ftp_auth_cache.h', 292 'ftp/ftp_auth_cache.h',
293 'ftp/ftp_ctrl_response_buffer.cc', 293 'ftp/ftp_ctrl_response_buffer.cc',
294 'ftp/ftp_ctrl_response_buffer.h', 294 'ftp/ftp_ctrl_response_buffer.h',
295 'ftp/ftp_directory_listing_buffer.cc', 295 'ftp/ftp_directory_listing_buffer.cc',
296 'ftp/ftp_directory_listing_buffer.h', 296 'ftp/ftp_directory_listing_buffer.h',
297 'ftp/ftp_directory_listing_parsers.cc', 297 'ftp/ftp_directory_listing_parser.cc',
298 'ftp/ftp_directory_listing_parsers.h', 298 'ftp/ftp_directory_listing_parser.h',
299 'ftp/ftp_directory_listing_parser_ls.cc',
300 'ftp/ftp_directory_listing_parser_ls.h',
301 'ftp/ftp_directory_listing_parser_vms.cc',
302 'ftp/ftp_directory_listing_parser_vms.h',
303 'ftp/ftp_directory_listing_parser_windows.cc',
304 'ftp/ftp_directory_listing_parser_windows.h',
299 'ftp/ftp_network_layer.cc', 305 'ftp/ftp_network_layer.cc',
300 'ftp/ftp_network_layer.h', 306 'ftp/ftp_network_layer.h',
301 'ftp/ftp_network_session.h', 307 'ftp/ftp_network_session.h',
302 'ftp/ftp_network_transaction.cc', 308 'ftp/ftp_network_transaction.cc',
303 'ftp/ftp_network_transaction.h', 309 'ftp/ftp_network_transaction.h',
304 'ftp/ftp_request_info.h', 310 'ftp/ftp_request_info.h',
305 'ftp/ftp_response_info.h', 311 'ftp/ftp_response_info.h',
306 'ftp/ftp_server_type_histograms.cc', 312 'ftp/ftp_server_type_histograms.cc',
307 'ftp/ftp_server_type_histograms.h', 313 'ftp/ftp_server_type_histograms.h',
308 'ftp/ftp_transaction.h', 314 'ftp/ftp_transaction.h',
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 'disk_cache/bitmap_unittest.cc', 606 'disk_cache/bitmap_unittest.cc',
601 'disk_cache/block_files_unittest.cc', 607 'disk_cache/block_files_unittest.cc',
602 'disk_cache/disk_cache_test_base.cc', 608 'disk_cache/disk_cache_test_base.cc',
603 'disk_cache/disk_cache_test_base.h', 609 'disk_cache/disk_cache_test_base.h',
604 'disk_cache/entry_unittest.cc', 610 'disk_cache/entry_unittest.cc',
605 'disk_cache/mapped_file_unittest.cc', 611 'disk_cache/mapped_file_unittest.cc',
606 'disk_cache/storage_block_unittest.cc', 612 'disk_cache/storage_block_unittest.cc',
607 'ftp/ftp_auth_cache_unittest.cc', 613 'ftp/ftp_auth_cache_unittest.cc',
608 'ftp/ftp_ctrl_response_buffer_unittest.cc', 614 'ftp/ftp_ctrl_response_buffer_unittest.cc',
609 'ftp/ftp_directory_listing_buffer_unittest.cc', 615 'ftp/ftp_directory_listing_buffer_unittest.cc',
610 'ftp/ftp_directory_listing_parsers_unittest.cc', 616 'ftp/ftp_directory_listing_parser_ls_unittest.cc',
617 'ftp/ftp_directory_listing_parser_vms_unittest.cc',
618 'ftp/ftp_directory_listing_parser_windows_unittest.cc',
611 'ftp/ftp_network_transaction_unittest.cc', 619 'ftp/ftp_network_transaction_unittest.cc',
612 'ftp/ftp_util_unittest.cc', 620 'ftp/ftp_util_unittest.cc',
613 'http/des_unittest.cc', 621 'http/des_unittest.cc',
614 'flip/flip_framer_test.cc', 622 'flip/flip_framer_test.cc',
615 'flip/flip_network_transaction_unittest.cc', 623 'flip/flip_network_transaction_unittest.cc',
616 'flip/flip_protocol_test.cc', 624 'flip/flip_protocol_test.cc',
617 'flip/flip_session_unittest.cc', 625 'flip/flip_session_unittest.cc',
618 'flip/flip_stream_unittest.cc', 626 'flip/flip_stream_unittest.cc',
619 'http/http_auth_cache_unittest.cc', 627 'http/http_auth_cache_unittest.cc',
620 'http/http_auth_handler_basic_unittest.cc', 628 'http/http_auth_handler_basic_unittest.cc',
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 ], 876 ],
869 }], 877 }],
870 ], 878 ],
871 } 879 }
872 880
873 # Local Variables: 881 # Local Variables:
874 # tab-width:2 882 # tab-width:2
875 # indent-tabs-mode:nil 883 # indent-tabs-mode:nil
876 # End: 884 # End:
877 # vim: set expandtab tabstop=2 shiftwidth=2: 885 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « net/ftp/ftp_util.cc ('k') | webkit/glue/ftp_directory_listing_response_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698