| 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 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 915 "notifications/platform_notification_context_impl.cc", | 915 "notifications/platform_notification_context_impl.cc", |
| 916 "notifications/platform_notification_context_impl.h", | 916 "notifications/platform_notification_context_impl.h", |
| 917 "notifications/type_converters.cc", | 917 "notifications/type_converters.cc", |
| 918 "notifications/type_converters.h", | 918 "notifications/type_converters.h", |
| 919 "permissions/permission_service_context.cc", | 919 "permissions/permission_service_context.cc", |
| 920 "permissions/permission_service_context.h", | 920 "permissions/permission_service_context.h", |
| 921 "permissions/permission_service_impl.cc", | 921 "permissions/permission_service_impl.cc", |
| 922 "permissions/permission_service_impl.h", | 922 "permissions/permission_service_impl.h", |
| 923 "power_monitor_message_broadcaster.cc", | 923 "power_monitor_message_broadcaster.cc", |
| 924 "power_monitor_message_broadcaster.h", | 924 "power_monitor_message_broadcaster.h", |
| 925 "power_usage_monitor_impl.cc", | |
| 926 "power_usage_monitor_impl.h", | |
| 927 "presentation/presentation_service_impl.cc", | 925 "presentation/presentation_service_impl.cc", |
| 928 "presentation/presentation_service_impl.h", | 926 "presentation/presentation_service_impl.h", |
| 929 "presentation/presentation_type_converters.cc", | 927 "presentation/presentation_type_converters.cc", |
| 930 "presentation/presentation_type_converters.h", | 928 "presentation/presentation_type_converters.h", |
| 931 "profiler_controller_impl.cc", | 929 "profiler_controller_impl.cc", |
| 932 "profiler_controller_impl.h", | 930 "profiler_controller_impl.h", |
| 933 "profiler_message_filter.cc", | 931 "profiler_message_filter.cc", |
| 934 "profiler_message_filter.h", | 932 "profiler_message_filter.h", |
| 935 "push_messaging/push_messaging_message_filter.cc", | 933 "push_messaging/push_messaging_message_filter.cc", |
| 936 "push_messaging/push_messaging_message_filter.h", | 934 "push_messaging/push_messaging_message_filter.h", |
| (...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1713 "web_contents/web_contents_android.h", | 1711 "web_contents/web_contents_android.h", |
| 1714 "web_contents/web_contents_view_android.cc", | 1712 "web_contents/web_contents_view_android.cc", |
| 1715 "web_contents/web_contents_view_android.h", | 1713 "web_contents/web_contents_view_android.h", |
| 1716 ] | 1714 ] |
| 1717 sources -= [ | 1715 sources -= [ |
| 1718 "browser_ipc_logging.cc", | 1716 "browser_ipc_logging.cc", |
| 1719 "device_sensors/data_fetcher_shared_memory_default.cc", | 1717 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 1720 "media/session/audio_focus_delegate_default.cc", | 1718 "media/session/audio_focus_delegate_default.cc", |
| 1721 "media/session/audio_focus_manager.cc", | 1719 "media/session/audio_focus_manager.cc", |
| 1722 "media/session/audio_focus_manager.h", | 1720 "media/session/audio_focus_manager.h", |
| 1723 "power_usage_monitor_impl.cc", | |
| 1724 "power_usage_monitor_impl.h", | |
| 1725 "tracing/tracing_ui.cc", | 1721 "tracing/tracing_ui.cc", |
| 1726 "tracing/tracing_ui.h", | 1722 "tracing/tracing_ui.h", |
| 1727 | 1723 |
| 1728 # Android skips most, but not all, of the speech code. | 1724 # Android skips most, but not all, of the speech code. |
| 1729 "speech/audio_buffer.cc", | 1725 "speech/audio_buffer.cc", |
| 1730 "speech/audio_buffer.h", | 1726 "speech/audio_buffer.h", |
| 1731 "speech/audio_encoder.cc", | 1727 "speech/audio_encoder.cc", |
| 1732 "speech/audio_encoder.h", | 1728 "speech/audio_encoder.h", |
| 1733 "speech/chunked_byte_buffer.cc", | 1729 "speech/chunked_byte_buffer.cc", |
| 1734 "speech/chunked_byte_buffer.h", | 1730 "speech/chunked_byte_buffer.h", |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1941 if (!is_component_build) { | 1937 if (!is_component_build) { |
| 1942 public_deps = [ | 1938 public_deps = [ |
| 1943 ":browser", | 1939 ":browser", |
| 1944 ] | 1940 ] |
| 1945 } else { | 1941 } else { |
| 1946 public_deps = [ | 1942 public_deps = [ |
| 1947 "//third_party/leveldatabase", | 1943 "//third_party/leveldatabase", |
| 1948 ] | 1944 ] |
| 1949 } | 1945 } |
| 1950 } | 1946 } |
| OLD | NEW |