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("ipc") { | 5 source_set("decoder") { |
6 sources = [ | 6 sources = [ |
7 "media_memory_chunk.cc", | 7 "cast_audio_decoder.h", |
8 "media_memory_chunk.h", | 8 "cast_audio_decoder_android.cc", |
9 "media_message.cc", | 9 "cast_audio_decoder_linux.cc", |
10 "media_message.h", | |
11 "media_message_fifo.cc", | |
12 "media_message_fifo.h", | |
13 "media_message_type.h", | |
14 ] | 10 ] |
15 | 11 |
16 deps = [ | 12 deps = [ |
17 "//base", | 13 "//base", |
18 "//chromecast/media/cma/base", | 14 "//chromecast/media/cma/base", |
| 15 "//media", |
| 16 "//media:shared_memory_support", |
19 ] | 17 ] |
20 } | 18 } |
OLD | NEW |