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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
# Copyright 2019 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//mojo/public/tools/bindings/mojom.gni")
import("linux/buildflags/buildflags.gni")
if (is_mac) {
mojom("mojo") {
sources = [ "mac/remote_cocoa/system_media_controls.mojom" ]
public_deps = [
"//mojo/public/mojom/base",
"//services/media_session/public/mojom",
]
}
}
component("system_media_controls") {
friend = [ ":unit_tests" ]
public = [
"system_media_controls.h",
"system_media_controls_observer.h",
]
if (is_mac) {
public += [ "mac/remote_cocoa/system_media_controls_bridge.h" ]
}
defines = [ "IS_SYSTEM_MEDIA_CONTROLS_IMPL" ]
deps = [
"//base",
"//services/media_session/public/cpp",
"//ui/gfx",
]
public_deps = [ "//skia" ]
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",
"//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_cocoa/system_media_controls_bridge.h",
"mac/remote_cocoa/system_media_controls_bridge.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",
"//components/remote_cocoa/browser",
"//components/remote_cocoa/common:mojo",
]
frameworks = [
"Foundation.framework",
"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",
"//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",
]
}
|