| 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 1708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1719 "screen_orientation/screen_orientation_message_filter_android.cc", | 1719 "screen_orientation/screen_orientation_message_filter_android.cc", |
| 1720 "screen_orientation/screen_orientation_message_filter_android.h", | 1720 "screen_orientation/screen_orientation_message_filter_android.h", |
| 1721 "web_contents/web_contents_android.cc", | 1721 "web_contents/web_contents_android.cc", |
| 1722 "web_contents/web_contents_android.h", | 1722 "web_contents/web_contents_android.h", |
| 1723 "web_contents/web_contents_view_android.cc", | 1723 "web_contents/web_contents_view_android.cc", |
| 1724 "web_contents/web_contents_view_android.h", | 1724 "web_contents/web_contents_view_android.h", |
| 1725 ] | 1725 ] |
| 1726 sources -= [ | 1726 sources -= [ |
| 1727 "browser_ipc_logging.cc", | 1727 "browser_ipc_logging.cc", |
| 1728 "device_sensors/data_fetcher_shared_memory_default.cc", | 1728 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 1729 "media/session/audio_focus_manager.cc", | |
| 1730 "media/session/audio_focus_manager.h", | |
| 1731 "media/session/media_session_delegate_default.cc", | 1729 "media/session/media_session_delegate_default.cc", |
| 1732 "power_usage_monitor_impl.cc", | 1730 "power_usage_monitor_impl.cc", |
| 1733 "power_usage_monitor_impl.h", | 1731 "power_usage_monitor_impl.h", |
| 1734 "tracing/tracing_ui.cc", | 1732 "tracing/tracing_ui.cc", |
| 1735 "tracing/tracing_ui.h", | 1733 "tracing/tracing_ui.h", |
| 1736 | 1734 |
| 1737 # Android skips most, but not all, of the speech code. | 1735 # Android skips most, but not all, of the speech code. |
| 1738 "speech/audio_buffer.cc", | 1736 "speech/audio_buffer.cc", |
| 1739 "speech/audio_buffer.h", | 1737 "speech/audio_buffer.h", |
| 1740 "speech/audio_encoder.cc", | 1738 "speech/audio_encoder.cc", |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1958 if (!is_component_build) { | 1956 if (!is_component_build) { |
| 1959 public_deps = [ | 1957 public_deps = [ |
| 1960 ":browser", | 1958 ":browser", |
| 1961 ] | 1959 ] |
| 1962 } else { | 1960 } else { |
| 1963 public_deps = [ | 1961 public_deps = [ |
| 1964 "//third_party/leveldatabase", | 1962 "//third_party/leveldatabase", |
| 1965 ] | 1963 ] |
| 1966 } | 1964 } |
| 1967 } | 1965 } |
| OLD | NEW |