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", | 9 "cast_audio_manager_factory.cc", |
10 "cast_audio_manager_factory.h", | 10 "cast_audio_manager_factory.h", |
11 "cast_audio_output_stream.cc", | 11 "cast_audio_output_stream.cc", |
12 "cast_audio_output_stream.h", | 12 "cast_audio_output_stream.h", |
13 ] | 13 ] |
14 | 14 |
15 configs += [ "//chromecast:config" ] | 15 configs += [ "//chromecast:config" ] |
16 | 16 |
17 public_deps = [ | 17 public_deps = [ |
18 "//chromecast/public/media", | 18 "//chromecast/public/media", |
19 ] | 19 ] |
20 | 20 |
21 deps = [ | 21 deps = [ |
22 "//media", | 22 "//media", |
23 ] | 23 ] |
24 } | 24 } |
25 | 25 |
26 source_set("test_support") { | 26 source_set("test_support") { |
27 testonly = true | 27 testonly = true |
28 | 28 |
29 sources = [ | |
30 "cast_audio_output_stream_unittest.cc", | |
31 ] | |
32 | |
33 configs += [ "//chromecast:config" ] | 29 configs += [ "//chromecast:config" ] |
34 | 30 |
35 deps = [ | 31 deps = [ |
36 ":audio", | 32 ":audio", |
37 "//testing/gtest", | 33 "//testing/gtest", |
38 ] | 34 ] |
39 } | 35 } |
OLD | NEW |