blob: a263fc707c88d9c4de220157db1b60198d1d125a (
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
|
# Copyright 2020 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.
source_set("webrtc") {
sources = [
"media_stream_device_enumerator.h",
"media_stream_device_enumerator_impl.cc",
"media_stream_device_enumerator_impl.h",
"media_stream_devices_controller.cc",
"media_stream_devices_controller.h",
]
deps = [
"//base",
"//components/content_settings/core/common",
"//components/permissions",
"//content/public/browser",
"//third_party/blink/public/common",
]
if (is_android) {
deps += [ "//ui/android" ]
}
}
|