| Index: chromecast/media/audio/BUILD.gn
 | 
| diff --git a/chromecast/base/metrics/BUILD.gn b/chromecast/media/audio/BUILD.gn
 | 
| similarity index 52%
 | 
| copy from chromecast/base/metrics/BUILD.gn
 | 
| copy to chromecast/media/audio/BUILD.gn
 | 
| index 191b30413c1490b945589d01d9831cb65a611767..87a6caab306b12b799a9912998fa16e87b1b8507 100644
 | 
| --- a/chromecast/base/metrics/BUILD.gn
 | 
| +++ b/chromecast/media/audio/BUILD.gn
 | 
| @@ -2,19 +2,24 @@
 | 
|  # Use of this source code is governed by a BSD-style license that can be
 | 
|  # found in the LICENSE file.
 | 
|  
 | 
| -source_set("metrics") {
 | 
| +source_set("audio") {
 | 
|    sources = [
 | 
| -    "cast_histograms.h",
 | 
| -    "cast_metrics_helper.cc",
 | 
| -    "cast_metrics_helper.h",
 | 
| -    "grouped_histogram.cc",
 | 
| -    "grouped_histogram.h",
 | 
| +    "cast_audio_manager.cc",
 | 
| +    "cast_audio_manager.h",
 | 
| +    "cast_audio_manager_factory.cc",
 | 
| +    "cast_audio_manager_factory.h",
 | 
| +    "cast_audio_output_stream.cc",
 | 
| +    "cast_audio_output_stream.h",
 | 
|    ]
 | 
|  
 | 
|    configs += [ "//chromecast:config" ]
 | 
|  
 | 
| +  public_deps = [
 | 
| +    "//chromecast/public/media",
 | 
| +  ]
 | 
| +
 | 
|    deps = [
 | 
| -    "//base",
 | 
| +    "//media",
 | 
|    ]
 | 
|  }
 | 
|  
 | 
| @@ -22,17 +27,13 @@ source_set("test_support") {
 | 
|    testonly = true
 | 
|  
 | 
|    sources = [
 | 
| -    "cast_metrics_test_helper.cc",
 | 
| -    "cast_metrics_test_helper.h",
 | 
| +    "cast_audio_output_stream_unittest.cc",
 | 
|    ]
 | 
|  
 | 
| -  public_deps = [
 | 
| -    ":metrics",
 | 
| -  ]
 | 
| +  configs += [ "//chromecast:config" ]
 | 
|  
 | 
|    deps = [
 | 
| -    "//base",
 | 
| +    ":audio",
 | 
| +    "//testing/gtest",
 | 
|    ]
 | 
| -
 | 
| -  configs += [ "//chromecast:config" ]
 | 
|  }
 | 
| 
 |