| Index: media/audio/BUILD.gn
 | 
| diff --git a/media/audio/BUILD.gn b/media/audio/BUILD.gn
 | 
| index 59a01e1a8509456fda0cf016bc6c102c3b4a3a2f..3f0660a0a685500fb9218ab6f1588f71eb41145d 100644
 | 
| --- a/media/audio/BUILD.gn
 | 
| +++ b/media/audio/BUILD.gn
 | 
| @@ -104,6 +104,9 @@ source_set("audio") {
 | 
|      "audio_system.h",
 | 
|      "audio_system_impl.cc",
 | 
|      "audio_system_impl.h",
 | 
| +    "audio_thread.h",
 | 
| +    "audio_thread_impl.cc",
 | 
| +    "audio_thread_impl.h",
 | 
|      "clockless_audio_sink.cc",
 | 
|      "clockless_audio_sink.h",
 | 
|      "fake_audio_input_stream.cc",
 | 
| @@ -299,15 +302,19 @@ static_library("test_support") {
 | 
|      "mock_audio_source_callback.h",
 | 
|      "test_audio_input_controller_factory.cc",
 | 
|      "test_audio_input_controller_factory.h",
 | 
| +    "test_audio_thread.cc",
 | 
| +    "test_audio_thread.h",
 | 
| +  ]
 | 
| +  configs += [
 | 
| +    ":platform_config",
 | 
| +    "//media:media_config",
 | 
|    ]
 | 
| -  configs += [ ":platform_config" ]
 | 
|    deps = [
 | 
|      "//base",
 | 
|      "//media",
 | 
|      "//testing/gmock",
 | 
|      "//testing/gtest",
 | 
|    ]
 | 
| -  configs += [ "//media:media_config" ]
 | 
|  }
 | 
|  
 | 
|  source_set("unit_tests") {
 | 
| 
 |