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