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

Side by Side Diff: content/browser/BUILD.gn

Issue 2689373003: Introduce ParallelDownloadJob. (Closed)
Patch Set: nits. Created 3 years, 9 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 | « no previous file | content/browser/download/download_create_info.h » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//ppapi/features/features.gni") 8 import("//ppapi/features/features.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/WebKit/public/public_features.gni") 10 import("//third_party/WebKit/public/public_features.gni")
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 "download/download_file_impl.h", 554 "download/download_file_impl.h",
555 "download/download_interrupt_reasons_impl.cc", 555 "download/download_interrupt_reasons_impl.cc",
556 "download/download_interrupt_reasons_impl.h", 556 "download/download_interrupt_reasons_impl.h",
557 "download/download_item_factory.h", 557 "download/download_item_factory.h",
558 "download/download_item_impl.cc", 558 "download/download_item_impl.cc",
559 "download/download_item_impl.h", 559 "download/download_item_impl.h",
560 "download/download_item_impl_delegate.cc", 560 "download/download_item_impl_delegate.cc",
561 "download/download_item_impl_delegate.h", 561 "download/download_item_impl_delegate.h",
562 "download/download_job.cc", 562 "download/download_job.cc",
563 "download/download_job.h", 563 "download/download_job.h",
564 "download/download_job_factory.cc",
565 "download/download_job_factory.h",
566 "download/download_job_impl.cc",
567 "download/download_job_impl.h",
564 "download/download_manager_impl.cc", 568 "download/download_manager_impl.cc",
565 "download/download_manager_impl.h", 569 "download/download_manager_impl.h",
566 "download/download_net_log_parameters.cc", 570 "download/download_net_log_parameters.cc",
567 "download/download_net_log_parameters.h", 571 "download/download_net_log_parameters.h",
568 "download/download_request_core.cc", 572 "download/download_request_core.cc",
569 "download/download_request_core.h", 573 "download/download_request_core.h",
570 "download/download_request_handle.cc", 574 "download/download_request_handle.cc",
571 "download/download_request_handle.h", 575 "download/download_request_handle.h",
572 "download/download_resource_handler.cc", 576 "download/download_resource_handler.cc",
573 "download/download_resource_handler.h", 577 "download/download_resource_handler.h",
574 "download/download_stats.cc", 578 "download/download_stats.cc",
575 "download/download_stats.h", 579 "download/download_stats.h",
580 "download/download_worker.cc",
581 "download/download_worker.h",
576 "download/drag_download_file.cc", 582 "download/drag_download_file.cc",
577 "download/drag_download_file.h", 583 "download/drag_download_file.h",
578 "download/drag_download_util.cc", 584 "download/drag_download_util.cc",
579 "download/drag_download_util.h", 585 "download/drag_download_util.h",
580 "download/mhtml_generation_manager.cc", 586 "download/mhtml_generation_manager.cc",
581 "download/mhtml_generation_manager.h", 587 "download/mhtml_generation_manager.h",
588 "download/parallel_download_job.cc",
589 "download/parallel_download_job.h",
582 "download/rate_estimator.cc", 590 "download/rate_estimator.cc",
583 "download/rate_estimator.h", 591 "download/rate_estimator.h",
584 "download/save_file.cc", 592 "download/save_file.cc",
585 "download/save_file.h", 593 "download/save_file.h",
586 "download/save_file_manager.cc", 594 "download/save_file_manager.cc",
587 "download/save_file_manager.h", 595 "download/save_file_manager.h",
588 "download/save_file_resource_handler.cc", 596 "download/save_file_resource_handler.cc",
589 "download/save_file_resource_handler.h", 597 "download/save_file_resource_handler.h",
590 "download/save_item.cc", 598 "download/save_item.cc",
591 "download/save_item.h", 599 "download/save_item.h",
(...skipping 1425 matching lines...) Expand 10 before | Expand all | Expand 10 after
2017 if (!is_component_build) { 2025 if (!is_component_build) {
2018 public_deps = [ 2026 public_deps = [
2019 ":browser", 2027 ":browser",
2020 ] 2028 ]
2021 } else { 2029 } else {
2022 public_deps = [ 2030 public_deps = [
2023 "//third_party/leveldatabase", 2031 "//third_party/leveldatabase",
2024 ] 2032 ]
2025 } 2033 }
2026 } 2034 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/download/download_create_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698