OLD | NEW |
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("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
9 | 9 |
10 source_set("browser") { | 10 source_set("browser") { |
(...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
860 "media/session/media_session_delegate_default.cc", | 860 "media/session/media_session_delegate_default.cc", |
861 "media/session/media_session_observer.h", | 861 "media/session/media_session_observer.h", |
862 "media/session/media_session_uma_helper.cc", | 862 "media/session/media_session_uma_helper.cc", |
863 "media/session/media_session_uma_helper.h", | 863 "media/session/media_session_uma_helper.h", |
864 "memory/memory_coordinator.cc", | 864 "memory/memory_coordinator.cc", |
865 "memory/memory_coordinator.h", | 865 "memory/memory_coordinator.h", |
866 "memory/memory_message_filter.cc", | 866 "memory/memory_message_filter.cc", |
867 "memory/memory_message_filter.h", | 867 "memory/memory_message_filter.h", |
868 "memory/memory_monitor.cc", | 868 "memory/memory_monitor.cc", |
869 "memory/memory_monitor.h", | 869 "memory/memory_monitor.h", |
| 870 "memory/memory_monitor_android.cc", |
| 871 "memory/memory_monitor_android.h", |
870 "memory/memory_monitor_linux.cc", | 872 "memory/memory_monitor_linux.cc", |
871 "memory/memory_monitor_linux.h", | 873 "memory/memory_monitor_linux.h", |
872 "memory/memory_monitor_win.cc", | 874 "memory/memory_monitor_win.cc", |
873 "memory/memory_monitor_win.h", | 875 "memory/memory_monitor_win.h", |
874 "memory/memory_pressure_controller_impl.cc", | 876 "memory/memory_pressure_controller_impl.cc", |
875 "memory/memory_pressure_controller_impl.h", | 877 "memory/memory_pressure_controller_impl.h", |
876 "message_port_message_filter.cc", | 878 "message_port_message_filter.cc", |
877 "message_port_message_filter.h", | 879 "message_port_message_filter.h", |
878 "message_port_provider.cc", | 880 "message_port_provider.cc", |
879 "message_port_service.cc", | 881 "message_port_service.cc", |
(...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1934 if (!is_component_build) { | 1936 if (!is_component_build) { |
1935 public_deps = [ | 1937 public_deps = [ |
1936 ":browser", | 1938 ":browser", |
1937 ] | 1939 ] |
1938 } else { | 1940 } else { |
1939 public_deps = [ | 1941 public_deps = [ |
1940 "//third_party/leveldatabase", | 1942 "//third_party/leveldatabase", |
1941 ] | 1943 ] |
1942 } | 1944 } |
1943 } | 1945 } |
OLD | NEW |