| 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("audio") { | 5 source_set("audio") { |
| 6 sources = [ | 6 sources = [ |
| 7 "cast_audio_manager.cc", | 7 "cast_audio_manager.cc", |
| 8 "cast_audio_manager.h", | 8 "cast_audio_manager.h", |
| 9 "cast_audio_manager_factory.cc", | |
| 10 "cast_audio_manager_factory.h", | |
| 11 "cast_audio_output_stream.cc", | 9 "cast_audio_output_stream.cc", |
| 12 "cast_audio_output_stream.h", | 10 "cast_audio_output_stream.h", |
| 13 ] | 11 ] |
| 14 | 12 |
| 15 deps = [ | 13 deps = [ |
| 16 "//base", | 14 "//base", |
| 17 "//chromecast/base", | 15 "//chromecast/base", |
| 18 "//chromecast/media/base", | 16 "//chromecast/media/base", |
| 19 "//chromecast/media/cma/backend", | 17 "//chromecast/media/cma/backend", |
| 20 "//chromecast/media/cma/base", | 18 "//chromecast/media/cma/base", |
| 21 "//chromecast/public/media", | 19 "//chromecast/public/media", |
| 22 "//media", | 20 "//media", |
| 23 "//media:shared_memory_support", | 21 "//media:shared_memory_support", |
| 24 ] | 22 ] |
| 25 } | 23 } |
| OLD | NEW |