| 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 1700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1711 "screen_orientation/screen_orientation_message_filter_android.cc", | 1711 "screen_orientation/screen_orientation_message_filter_android.cc", |
| 1712 "screen_orientation/screen_orientation_message_filter_android.h", | 1712 "screen_orientation/screen_orientation_message_filter_android.h", |
| 1713 "web_contents/web_contents_android.cc", | 1713 "web_contents/web_contents_android.cc", |
| 1714 "web_contents/web_contents_android.h", | 1714 "web_contents/web_contents_android.h", |
| 1715 "web_contents/web_contents_view_android.cc", | 1715 "web_contents/web_contents_view_android.cc", |
| 1716 "web_contents/web_contents_view_android.h", | 1716 "web_contents/web_contents_view_android.h", |
| 1717 ] | 1717 ] |
| 1718 sources -= [ | 1718 sources -= [ |
| 1719 "browser_ipc_logging.cc", | 1719 "browser_ipc_logging.cc", |
| 1720 "device_sensors/data_fetcher_shared_memory_default.cc", | 1720 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 1721 "media/session/audio_focus_manager.cc", |
| 1722 "media/session/audio_focus_manager.h", |
| 1721 "media/session/media_session_delegate_default.cc", | 1723 "media/session/media_session_delegate_default.cc", |
| 1722 "power_usage_monitor_impl.cc", | 1724 "power_usage_monitor_impl.cc", |
| 1723 "power_usage_monitor_impl.h", | 1725 "power_usage_monitor_impl.h", |
| 1724 "tracing/tracing_ui.cc", | 1726 "tracing/tracing_ui.cc", |
| 1725 "tracing/tracing_ui.h", | 1727 "tracing/tracing_ui.h", |
| 1726 | 1728 |
| 1727 # Android skips most, but not all, of the speech code. | 1729 # Android skips most, but not all, of the speech code. |
| 1728 "speech/audio_buffer.cc", | 1730 "speech/audio_buffer.cc", |
| 1729 "speech/audio_buffer.h", | 1731 "speech/audio_buffer.h", |
| 1730 "speech/audio_encoder.cc", | 1732 "speech/audio_encoder.cc", |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1948 if (!is_component_build) { | 1950 if (!is_component_build) { |
| 1949 public_deps = [ | 1951 public_deps = [ |
| 1950 ":browser", | 1952 ":browser", |
| 1951 ] | 1953 ] |
| 1952 } else { | 1954 } else { |
| 1953 public_deps = [ | 1955 public_deps = [ |
| 1954 "//third_party/leveldatabase", | 1956 "//third_party/leveldatabase", |
| 1955 ] | 1957 ] |
| 1956 } | 1958 } |
| 1957 } | 1959 } |
| OLD | NEW |