1# Copyright 2018 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5component("test_support") {
6  output_name = "media_session_test_support_cpp"
7
8  sources = [
9    "audio_focus_test_util.cc",
10    "audio_focus_test_util.h",
11    "mock_media_session.cc",
12    "mock_media_session.h",
13    "test_media_controller.cc",
14    "test_media_controller.h",
15  ]
16
17  deps = [
18    "//base",
19    "//services/media_session/public/cpp",
20    "//services/media_session/public/mojom",
21  ]
22
23  defines = [ "IS_MEDIA_SESSION_TEST_SUPPORT_CPP_IMPL" ]
24}
25