OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 source_set("backend") { | 5 source_set("backend") { |
6 sources = [ | 6 sources = [ |
7 "audio_decoder_default.cc", | 7 "audio_decoder_default.cc", |
8 "audio_decoder_default.h", | 8 "audio_decoder_default.h", |
9 "audio_decoder_wrapper.cc", | 9 "audio_decoder_wrapper.cc", |
10 "audio_decoder_wrapper.h", | 10 "audio_decoder_wrapper.h", |
11 "media_pipeline_backend_default.cc", | 11 "media_pipeline_backend_default.cc", |
12 "media_pipeline_backend_default.h", | 12 "media_pipeline_backend_default.h", |
13 "media_pipeline_backend_manager.cc", | 13 "media_pipeline_backend_manager.cc", |
14 "media_pipeline_backend_manager.h", | 14 "media_pipeline_backend_manager.h", |
15 "media_pipeline_backend_wrapper.cc", | 15 "media_pipeline_backend_wrapper.cc", |
16 "media_pipeline_backend_wrapper.h", | 16 "media_pipeline_backend_wrapper.h", |
17 "video_decoder_default.cc", | 17 "video_decoder_default.cc", |
18 "video_decoder_default.h", | 18 "video_decoder_default.h", |
19 ] | 19 ] |
20 | 20 |
21 public_deps = [ | 21 public_deps = [ |
22 "//chromecast/public", | 22 "//chromecast/public", |
23 "//chromecast/public/media", | 23 "//chromecast/public/media", |
24 ] | 24 ] |
25 | 25 |
26 deps = [ | 26 deps = [ |
27 "//base", | 27 "//base", |
28 "//chromecast/media/base:message_loop", | |
29 ] | 28 ] |
30 } | 29 } |
OLD | NEW |