OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("media") { |
| 6 sources = [ |
| 7 "audio_pipeline_proxy.cc", |
| 8 "audio_pipeline_proxy.h", |
| 9 "chromecast_media_renderer_factory.cc", |
| 10 "chromecast_media_renderer_factory.h", |
| 11 "cma_message_filter_proxy.cc", |
| 12 "cma_message_filter_proxy.h", |
| 13 "media_channel_proxy.cc", |
| 14 "media_channel_proxy.h", |
| 15 "media_pipeline_proxy.cc", |
| 16 "media_pipeline_proxy.h", |
| 17 "video_pipeline_proxy.cc", |
| 18 "video_pipeline_proxy.h", |
| 19 ] |
| 20 |
| 21 deps = [ |
| 22 "//base", |
| 23 "//chromecast/common/media", |
| 24 "//chromecast/media", |
| 25 "//content/public/renderer", |
| 26 "//ipc", |
| 27 "//media", |
| 28 ] |
| 29 } |
OLD | NEW |