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

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

Issue 2824133002: Record swap metrics (Closed)
Patch Set: comments 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
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 972 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 "memory/memory_message_filter.cc", 983 "memory/memory_message_filter.cc",
984 "memory/memory_message_filter.h", 984 "memory/memory_message_filter.h",
985 "memory/memory_monitor.cc", 985 "memory/memory_monitor.cc",
986 "memory/memory_monitor.h", 986 "memory/memory_monitor.h",
987 "memory/memory_monitor_android.cc", 987 "memory/memory_monitor_android.cc",
988 "memory/memory_monitor_android.h", 988 "memory/memory_monitor_android.h",
989 "memory/memory_monitor_win.cc", 989 "memory/memory_monitor_win.cc",
990 "memory/memory_monitor_win.h", 990 "memory/memory_monitor_win.h",
991 "memory/memory_pressure_controller_impl.cc", 991 "memory/memory_pressure_controller_impl.cc",
992 "memory/memory_pressure_controller_impl.h", 992 "memory/memory_pressure_controller_impl.h",
993 "memory/swap_metrics_observer.cc",
994 "memory/swap_metrics_observer.h",
995 "memory/swap_metrics_observer_linux.cc",
996 "memory/swap_metrics_observer_linux.h",
997 "memory/swap_metrics_observer_mac.cc",
998 "memory/swap_metrics_observer_win.cc",
993 "message_port_provider.cc", 999 "message_port_provider.cc",
994 "mime_registry_impl.cc", 1000 "mime_registry_impl.cc",
995 "mime_registry_impl.h", 1001 "mime_registry_impl.h",
996 "net/browser_online_state_observer.cc", 1002 "net/browser_online_state_observer.cc",
997 "net/browser_online_state_observer.h", 1003 "net/browser_online_state_observer.h",
998 "net/network_errors_listing_ui.cc", 1004 "net/network_errors_listing_ui.cc",
999 "net/network_errors_listing_ui.h", 1005 "net/network_errors_listing_ui.h",
1000 "net/quota_policy_cookie_store.cc", 1006 "net/quota_policy_cookie_store.cc",
1001 "net/quota_policy_cookie_store.h", 1007 "net/quota_policy_cookie_store.h",
1002 "net/view_blob_internals_job_factory.cc", 1008 "net/view_blob_internals_job_factory.cc",
(...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after
1857 "renderer_host/native_web_keyboard_event_android.cc", 1863 "renderer_host/native_web_keyboard_event_android.cc",
1858 "renderer_host/render_widget_host_view_android.cc", 1864 "renderer_host/render_widget_host_view_android.cc",
1859 "renderer_host/render_widget_host_view_android.h", 1865 "renderer_host/render_widget_host_view_android.h",
1860 "screen_orientation/screen_orientation_delegate_android.cc", 1866 "screen_orientation/screen_orientation_delegate_android.cc",
1861 "screen_orientation/screen_orientation_delegate_android.h", 1867 "screen_orientation/screen_orientation_delegate_android.h",
1862 "web_contents/web_contents_android.cc", 1868 "web_contents/web_contents_android.cc",
1863 "web_contents/web_contents_android.h", 1869 "web_contents/web_contents_android.h",
1864 "web_contents/web_contents_view_android.cc", 1870 "web_contents/web_contents_view_android.cc",
1865 "web_contents/web_contents_view_android.h", 1871 "web_contents/web_contents_view_android.h",
1866 ] 1872 ]
1873
1874 set_sources_assignment_filter([])
1875 sources += [
1876 "memory/swap_metrics_observer_linux.cc",
1877 "memory/swap_metrics_observer_linux.h",
1878 ]
1879 set_sources_assignment_filter(sources_assignment_filter)
1880
1867 sources -= [ 1881 sources -= [
1868 "browser_ipc_logging.cc", 1882 "browser_ipc_logging.cc",
1869 "media/session/audio_focus_delegate_default.cc", 1883 "media/session/audio_focus_delegate_default.cc",
1870 "media/session/audio_focus_manager.cc", 1884 "media/session/audio_focus_manager.cc",
1871 "media/session/audio_focus_manager.h", 1885 "media/session/audio_focus_manager.h",
1872 "tracing/tracing_ui.cc", 1886 "tracing/tracing_ui.cc",
1873 "tracing/tracing_ui.h", 1887 "tracing/tracing_ui.h",
1874 ] 1888 ]
1875 deps += [ 1889 deps += [
1876 "//content/public/android:jni", 1890 "//content/public/android:jni",
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 if (!is_component_build) { 2089 if (!is_component_build) {
2076 public_deps = [ 2090 public_deps = [
2077 ":browser", 2091 ":browser",
2078 ] 2092 ]
2079 } else { 2093 } else {
2080 public_deps = [ 2094 public_deps = [
2081 "//third_party/leveldatabase", 2095 "//third_party/leveldatabase",
2082 ] 2096 ]
2083 } 2097 }
2084 } 2098 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/browser_main_loop.cc » ('j') | content/browser/memory/swap_metrics_observer_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698