| Index: chromecast/media/audio/BUILD.gn
|
| diff --git a/chromecast/base/metrics/BUILD.gn b/chromecast/media/audio/BUILD.gn
|
| similarity index 55%
|
| copy from chromecast/base/metrics/BUILD.gn
|
| copy to chromecast/media/audio/BUILD.gn
|
| index 191b30413c1490b945589d01d9831cb65a611767..245d695dd12525b6433bed7e05c579013884b9dc 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",
|
| + "audio_manager.cc",
|
| + "audio_manager.h",
|
| + "audio_manager_factory.cc",
|
| + "audio_manager_factory.h",
|
| + "audio_output_stream.cc",
|
| + "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",
|
| + "audio_output_stream_unittest.cc",
|
| ]
|
|
|
| - public_deps = [
|
| - ":metrics",
|
| - ]
|
| + configs += [ "//chromecast:config" ]
|
|
|
| deps = [
|
| - "//base",
|
| + ":audio",
|
| + "//testing/gtest",
|
| ]
|
| -
|
| - configs += [ "//chromecast:config" ]
|
| }
|
|
|