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("//ppapi/features/features.gni") | 8 import("//ppapi/features/features.gni") |
9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
10 import("//third_party/WebKit/public/public_features.gni") | 10 import("//third_party/WebKit/public/public_features.gni") |
(...skipping 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1105 "renderer_host/media/audio_input_device_manager.cc", | 1105 "renderer_host/media/audio_input_device_manager.cc", |
1106 "renderer_host/media/audio_input_device_manager.h", | 1106 "renderer_host/media/audio_input_device_manager.h", |
1107 "renderer_host/media/audio_input_renderer_host.cc", | 1107 "renderer_host/media/audio_input_renderer_host.cc", |
1108 "renderer_host/media/audio_input_renderer_host.h", | 1108 "renderer_host/media/audio_input_renderer_host.h", |
1109 "renderer_host/media/audio_input_sync_writer.cc", | 1109 "renderer_host/media/audio_input_sync_writer.cc", |
1110 "renderer_host/media/audio_input_sync_writer.h", | 1110 "renderer_host/media/audio_input_sync_writer.h", |
1111 "renderer_host/media/audio_output_authorization_handler.cc", | 1111 "renderer_host/media/audio_output_authorization_handler.cc", |
1112 "renderer_host/media/audio_output_authorization_handler.h", | 1112 "renderer_host/media/audio_output_authorization_handler.h", |
1113 "renderer_host/media/audio_output_delegate.cc", | 1113 "renderer_host/media/audio_output_delegate.cc", |
1114 "renderer_host/media/audio_output_delegate.h", | 1114 "renderer_host/media/audio_output_delegate.h", |
| 1115 "renderer_host/media/audio_output_impl.cc", |
| 1116 "renderer_host/media/audio_output_impl.h", |
| 1117 "renderer_host/media/audio_output_service_context.cc", |
| 1118 "renderer_host/media/audio_output_service_context.h", |
| 1119 "renderer_host/media/audio_output_service_impl.cc", |
| 1120 "renderer_host/media/audio_output_service_impl.h", |
1115 "renderer_host/media/audio_renderer_host.cc", | 1121 "renderer_host/media/audio_renderer_host.cc", |
1116 "renderer_host/media/audio_renderer_host.h", | 1122 "renderer_host/media/audio_renderer_host.h", |
1117 "renderer_host/media/audio_sync_reader.cc", | 1123 "renderer_host/media/audio_sync_reader.cc", |
1118 "renderer_host/media/audio_sync_reader.h", | 1124 "renderer_host/media/audio_sync_reader.h", |
1119 "renderer_host/media/media_capture_devices_impl.cc", | 1125 "renderer_host/media/media_capture_devices_impl.cc", |
1120 "renderer_host/media/media_capture_devices_impl.h", | 1126 "renderer_host/media/media_capture_devices_impl.h", |
1121 "renderer_host/media/media_devices_dispatcher_host.cc", | 1127 "renderer_host/media/media_devices_dispatcher_host.cc", |
1122 "renderer_host/media/media_devices_dispatcher_host.h", | 1128 "renderer_host/media/media_devices_dispatcher_host.h", |
1123 "renderer_host/media/media_devices_manager.cc", | 1129 "renderer_host/media/media_devices_manager.cc", |
1124 "renderer_host/media/media_devices_manager.h", | 1130 "renderer_host/media/media_devices_manager.h", |
(...skipping 893 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2018 if (!is_component_build) { | 2024 if (!is_component_build) { |
2019 public_deps = [ | 2025 public_deps = [ |
2020 ":browser", | 2026 ":browser", |
2021 ] | 2027 ] |
2022 } else { | 2028 } else { |
2023 public_deps = [ | 2029 public_deps = [ |
2024 "//third_party/leveldatabase", | 2030 "//third_party/leveldatabase", |
2025 ] | 2031 ] |
2026 } | 2032 } |
2027 } | 2033 } |
OLD | NEW |