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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
9 import("//content/common/features.gni") | 9 import("//content/common/features.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 "media/audio_renderer_sink_cache.h", | 226 "media/audio_renderer_sink_cache.h", |
227 "media/audio_renderer_sink_cache_impl.cc", | 227 "media/audio_renderer_sink_cache_impl.cc", |
228 "media/audio_renderer_sink_cache_impl.h", | 228 "media/audio_renderer_sink_cache_impl.h", |
229 "media/cdm/pepper_cdm_wrapper.h", | 229 "media/cdm/pepper_cdm_wrapper.h", |
230 "media/cdm/pepper_cdm_wrapper_impl.cc", | 230 "media/cdm/pepper_cdm_wrapper_impl.cc", |
231 "media/cdm/pepper_cdm_wrapper_impl.h", | 231 "media/cdm/pepper_cdm_wrapper_impl.h", |
232 "media/cdm/ppapi_decryptor.cc", | 232 "media/cdm/ppapi_decryptor.cc", |
233 "media/cdm/ppapi_decryptor.h", | 233 "media/cdm/ppapi_decryptor.h", |
234 "media/cdm/render_cdm_factory.cc", | 234 "media/cdm/render_cdm_factory.cc", |
235 "media/cdm/render_cdm_factory.h", | 235 "media/cdm/render_cdm_factory.h", |
| 236 "media/media_factory.cc", |
| 237 "media/media_factory.h", |
236 "media/media_permission_dispatcher.cc", | 238 "media/media_permission_dispatcher.cc", |
237 "media/media_permission_dispatcher.h", | 239 "media/media_permission_dispatcher.h", |
238 "media/midi_message_filter.cc", | 240 "media/midi_message_filter.cc", |
239 "media/midi_message_filter.h", | 241 "media/midi_message_filter.h", |
240 "media/render_media_client.cc", | 242 "media/render_media_client.cc", |
241 "media/render_media_client.h", | 243 "media/render_media_client.h", |
242 "media/render_media_log.cc", | 244 "media/render_media_log.cc", |
243 "media/render_media_log.h", | 245 "media/render_media_log.h", |
244 "media/renderer_gpu_video_accelerator_factories.cc", | 246 "media/renderer_gpu_video_accelerator_factories.cc", |
245 "media/renderer_gpu_video_accelerator_factories.h", | 247 "media/renderer_gpu_video_accelerator_factories.h", |
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
978 # See comment at the top of //content/BUILD.gn for how this works. | 980 # See comment at the top of //content/BUILD.gn for how this works. |
979 group("for_content_tests") { | 981 group("for_content_tests") { |
980 visibility = [ "//content/test/*" ] | 982 visibility = [ "//content/test/*" ] |
981 | 983 |
982 if (!is_component_build) { | 984 if (!is_component_build) { |
983 public_deps = [ | 985 public_deps = [ |
984 ":renderer", | 986 ":renderer", |
985 ] | 987 ] |
986 } | 988 } |
987 } | 989 } |
OLD | NEW |