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

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

Issue 2645133003: Introduce DownloadJob for DownloadItem refactoring. (Closed)
Patch Set: Conditionally call to delegate. Created 3 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 | « content/browser/download/mock_download_job.cc ('k') | no next file » | 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 12 matching lines...) Expand all
23 23
24 # See comment at the top of //content/BUILD.gn for why this is disabled in 24 # See comment at the top of //content/BUILD.gn for why this is disabled in
25 # component builds. 25 # component builds.
26 if (is_component_build) { 26 if (is_component_build) {
27 check_includes = false 27 check_includes = false
28 } 28 }
29 29
30 sources = [ 30 sources = [
31 "../browser/download/mock_download_file.cc", 31 "../browser/download/mock_download_file.cc",
32 "../browser/download/mock_download_file.h", 32 "../browser/download/mock_download_file.h",
33 "../browser/download/mock_download_job.cc",
34 "../browser/download/mock_download_job.h",
33 "../browser/media/session/mock_media_session_observer.cc", 35 "../browser/media/session/mock_media_session_observer.cc",
34 "../browser/media/session/mock_media_session_observer.h", 36 "../browser/media/session/mock_media_session_observer.h",
35 "../browser/service_worker/embedded_worker_test_helper.cc", 37 "../browser/service_worker/embedded_worker_test_helper.cc",
36 "../browser/service_worker/embedded_worker_test_helper.h", 38 "../browser/service_worker/embedded_worker_test_helper.h",
37 "../public/test/async_file_test_helper.cc", 39 "../public/test/async_file_test_helper.cc",
38 "../public/test/async_file_test_helper.h", 40 "../public/test/async_file_test_helper.h",
39 "../public/test/background_sync_test_util.cc", 41 "../public/test/background_sync_test_util.cc",
40 "../public/test/background_sync_test_util.h", 42 "../public/test/background_sync_test_util.h",
41 "../public/test/browser_side_navigation_test_utils.cc", 43 "../public/test/browser_side_navigation_test_utils.cc",
42 "../public/test/browser_side_navigation_test_utils.h", 44 "../public/test/browser_side_navigation_test_utils.h",
(...skipping 981 matching lines...) Expand 10 before | Expand all | Expand 10 after
1024 "../browser/devtools/shared_worker_devtools_manager_unittest.cc", 1026 "../browser/devtools/shared_worker_devtools_manager_unittest.cc",
1025 "../browser/dom_storage/dom_storage_area_unittest.cc", 1027 "../browser/dom_storage/dom_storage_area_unittest.cc",
1026 "../browser/dom_storage/dom_storage_context_impl_unittest.cc", 1028 "../browser/dom_storage/dom_storage_context_impl_unittest.cc",
1027 "../browser/dom_storage/dom_storage_database_unittest.cc", 1029 "../browser/dom_storage/dom_storage_database_unittest.cc",
1028 "../browser/dom_storage/local_storage_context_mojo_unittest.cc", 1030 "../browser/dom_storage/local_storage_context_mojo_unittest.cc",
1029 "../browser/dom_storage/session_storage_database_unittest.cc", 1031 "../browser/dom_storage/session_storage_database_unittest.cc",
1030 "../browser/download/base_file_unittest.cc", 1032 "../browser/download/base_file_unittest.cc",
1031 "../browser/download/base_file_win_unittest.cc", 1033 "../browser/download/base_file_win_unittest.cc",
1032 "../browser/download/download_file_unittest.cc", 1034 "../browser/download/download_file_unittest.cc",
1033 "../browser/download/download_item_impl_unittest.cc", 1035 "../browser/download/download_item_impl_unittest.cc",
1036 "../browser/download/download_job_unittest.cc",
1034 "../browser/download/download_manager_impl_unittest.cc", 1037 "../browser/download/download_manager_impl_unittest.cc",
1035 "../browser/download/rate_estimator_unittest.cc", 1038 "../browser/download/rate_estimator_unittest.cc",
1036 "../browser/download/save_package_unittest.cc", 1039 "../browser/download/save_package_unittest.cc",
1037 "../browser/fileapi/copy_or_move_file_validator_unittest.cc", 1040 "../browser/fileapi/copy_or_move_file_validator_unittest.cc",
1038 "../browser/fileapi/copy_or_move_operation_delegate_unittest.cc", 1041 "../browser/fileapi/copy_or_move_operation_delegate_unittest.cc",
1039 "../browser/fileapi/dragged_file_util_unittest.cc", 1042 "../browser/fileapi/dragged_file_util_unittest.cc",
1040 "../browser/fileapi/external_mount_points_unittest.cc", 1043 "../browser/fileapi/external_mount_points_unittest.cc",
1041 "../browser/fileapi/file_system_context_unittest.cc", 1044 "../browser/fileapi/file_system_context_unittest.cc",
1042 "../browser/fileapi/file_system_dir_url_request_job_unittest.cc", 1045 "../browser/fileapi/file_system_dir_url_request_job_unittest.cc",
1043 "../browser/fileapi/file_system_file_stream_reader_unittest.cc", 1046 "../browser/fileapi/file_system_file_stream_reader_unittest.cc",
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after
1779 if (is_android) { 1782 if (is_android) {
1780 deps += [ "//testing/android/native_test:native_test_native_code" ] 1783 deps += [ "//testing/android/native_test:native_test_native_code" ]
1781 } 1784 }
1782 } 1785 }
1783 1786
1784 group("fuzzers") { 1787 group("fuzzers") {
1785 deps = [ 1788 deps = [
1786 "//content/test/fuzzer", 1789 "//content/test/fuzzer",
1787 ] 1790 ]
1788 } 1791 }
OLDNEW
« no previous file with comments | « content/browser/download/mock_download_job.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698