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", |
(...skipping 10 matching lines...) Expand all Loading... |
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 configs += [ "//chromecast:config" ] | 29 configs += [ "//chromecast:config" ] |
30 | 30 |
| 31 public_deps = [ |
| 32 ":audio", |
| 33 ] |
| 34 |
31 deps = [ | 35 deps = [ |
32 ":audio", | |
33 "//testing/gtest", | 36 "//testing/gtest", |
34 ] | 37 ] |
35 } | 38 } |
OLD | NEW |