summaryrefslogtreecommitdiff
path: root/chromium/components/system_media_controls/BUILD.gn
blob: ebe31647dc094fbab36fac416e50e1acb199e303 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Copyright 2019 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("linux/buildflags/buildflags.gni")

component("system_media_controls") {
  friend = [ ":unit_tests" ]

  public = [
    "system_media_controls.h",
    "system_media_controls_observer.h",
  ]

  defines = [ "IS_SYSTEM_MEDIA_CONTROLS_IMPL" ]

  deps = [
    "//base",
    "//ui/gfx",
  ]

  public_deps = [ "//skia" ]

  # TODO(https://crbug.com/949596): Move MPRIS and Now Playing here.
  if (is_win) {
    sources = [
      "win/system_media_controls_win.cc",
      "win/system_media_controls_win.h",
    ]
  } else if (use_mpris) {
    sources = [
      "linux/system_media_controls_linux.cc",
      "linux/system_media_controls_linux.h",
    ]
    deps += [
      "//build:branding_buildflags",
      "//components/dbus/properties",
      "//components/dbus/thread_linux",
      "//dbus",
    ]
  } else if (is_mac) {
    sources = [
      "mac/now_playing_info_center_delegate.h",
      "mac/now_playing_info_center_delegate.mm",
      "mac/now_playing_info_center_delegate_cocoa.h",
      "mac/now_playing_info_center_delegate_cocoa.mm",
      "mac/remote_command_center_delegate.h",
      "mac/remote_command_center_delegate.mm",
      "mac/remote_command_center_delegate_cocoa.h",
      "mac/remote_command_center_delegate_cocoa.mm",
      "mac/system_media_controls_mac.h",
      "mac/system_media_controls_mac.mm",
    ]
    deps += [ "//build:branding_buildflags" ]

    frameworks = [ "Foundation.framework" ]
    weak_frameworks = [ "MediaPlayer.framework" ]
  } else {
    sources = [ "system_media_controls_stub.cc" ]
  }
}

source_set("unit_tests") {
  testonly = true

  if (use_mpris) {
    sources = [ "linux/system_media_controls_linux_unittest.cc" ]
    deps = [
      ":system_media_controls",
      "//base",
      "//base/test:test_support",
      "//components/dbus/thread_linux",
      "//dbus",
      "//dbus:test_support",
      "//testing/gmock",
      "//testing/gtest",
    ]
  }
}

static_library("test_support") {
  testonly = true

  sources = [
    "mock_system_media_controls.cc",
    "mock_system_media_controls.h",
  ]

  deps = [
    ":system_media_controls",
    "//base",
    "//testing/gmock",
  ]
}