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

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

Issue 2893873002: Convert PowerSaveBlockResourceThrottle to be client of WakeLock mojo service. (Closed)
Patch Set: Convert PowerSaveBlockResourceThrottle to be client of WakeLock mojo service. Created 3 years, 7 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/loader/DEPS » ('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("//gpu/vulkan/features.gni") 7 import("//gpu/vulkan/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//printing/features/features.gni") 10 import("//printing/features/features.gni")
(...skipping 873 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 "loader/navigation_url_loader_impl.cc", 884 "loader/navigation_url_loader_impl.cc",
885 "loader/navigation_url_loader_impl.h", 885 "loader/navigation_url_loader_impl.h",
886 "loader/navigation_url_loader_impl_core.cc", 886 "loader/navigation_url_loader_impl_core.cc",
887 "loader/navigation_url_loader_impl_core.h", 887 "loader/navigation_url_loader_impl_core.h",
888 "loader/navigation_url_loader_network_service.cc", 888 "loader/navigation_url_loader_network_service.cc",
889 "loader/navigation_url_loader_network_service.h", 889 "loader/navigation_url_loader_network_service.h",
890 "loader/netlog_observer.cc", 890 "loader/netlog_observer.cc",
891 "loader/netlog_observer.h", 891 "loader/netlog_observer.h",
892 "loader/null_resource_controller.cc", 892 "loader/null_resource_controller.cc",
893 "loader/null_resource_controller.h", 893 "loader/null_resource_controller.h",
894 "loader/power_save_block_resource_throttle.cc",
895 "loader/power_save_block_resource_throttle.h",
896 "loader/redirect_to_file_resource_handler.cc", 894 "loader/redirect_to_file_resource_handler.cc",
897 "loader/redirect_to_file_resource_handler.h", 895 "loader/redirect_to_file_resource_handler.h",
898 "loader/resource_buffer.cc", 896 "loader/resource_buffer.cc",
899 "loader/resource_buffer.h", 897 "loader/resource_buffer.h",
900 "loader/resource_controller.h", 898 "loader/resource_controller.h",
901 "loader/resource_dispatcher_host_impl.cc", 899 "loader/resource_dispatcher_host_impl.cc",
902 "loader/resource_dispatcher_host_impl.h", 900 "loader/resource_dispatcher_host_impl.h",
903 "loader/resource_handler.cc", 901 "loader/resource_handler.cc",
904 "loader/resource_handler.h", 902 "loader/resource_handler.h",
905 "loader/resource_hints_impl.cc", 903 "loader/resource_hints_impl.cc",
(...skipping 21 matching lines...) Expand all
927 "loader/temporary_file_stream.cc", 925 "loader/temporary_file_stream.cc",
928 "loader/temporary_file_stream.h", 926 "loader/temporary_file_stream.h",
929 "loader/throttling_resource_handler.cc", 927 "loader/throttling_resource_handler.cc",
930 "loader/throttling_resource_handler.h", 928 "loader/throttling_resource_handler.h",
931 "loader/upload_data_stream_builder.cc", 929 "loader/upload_data_stream_builder.cc",
932 "loader/upload_data_stream_builder.h", 930 "loader/upload_data_stream_builder.h",
933 "loader/upload_progress_tracker.cc", 931 "loader/upload_progress_tracker.cc",
934 "loader/upload_progress_tracker.h", 932 "loader/upload_progress_tracker.h",
935 "loader/url_loader_factory_impl.cc", 933 "loader/url_loader_factory_impl.cc",
936 "loader/url_loader_factory_impl.h", 934 "loader/url_loader_factory_impl.h",
935 "loader/wake_lock_resource_throttle.cc",
936 "loader/wake_lock_resource_throttle.h",
937 "loader_delegate_impl.cc", 937 "loader_delegate_impl.cc",
938 "loader_delegate_impl.h", 938 "loader_delegate_impl.h",
939 "mach_broker_mac.h", 939 "mach_broker_mac.h",
940 "mach_broker_mac.mm", 940 "mach_broker_mac.mm",
941 "manifest/manifest_manager_host.cc", 941 "manifest/manifest_manager_host.cc",
942 "manifest/manifest_manager_host.h", 942 "manifest/manifest_manager_host.h",
943 "media/android/browser_media_player_manager.cc", 943 "media/android/browser_media_player_manager.cc",
944 "media/android/browser_media_player_manager.h", 944 "media/android/browser_media_player_manager.h",
945 "media/android/browser_surface_view_manager.cc", 945 "media/android/browser_surface_view_manager.cc",
946 "media/android/browser_surface_view_manager.h", 946 "media/android/browser_surface_view_manager.h",
(...skipping 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after
2149 if (!is_component_build) { 2149 if (!is_component_build) {
2150 public_deps = [ 2150 public_deps = [
2151 ":browser", 2151 ":browser",
2152 ] 2152 ]
2153 } else { 2153 } else {
2154 public_deps = [ 2154 public_deps = [
2155 "//third_party/leveldatabase", 2155 "//third_party/leveldatabase",
2156 ] 2156 ]
2157 } 2157 }
2158 } 2158 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/loader/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698