blob: 3066fa494a3139c8dbb0113105e10fb7bf837253 (
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
|
# Copyright 2015 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("audio") {
sources = [
"cast_audio_manager.cc",
"cast_audio_manager.h",
"cast_audio_manager_factory.cc",
"cast_audio_manager_factory.h",
"cast_audio_output_stream.cc",
"cast_audio_output_stream.h",
]
configs += [ "//chromecast:config" ]
deps = [
"//base",
"//chromecast/base",
"//chromecast/media/base",
"//chromecast/media/cma/base",
"//chromecast/public/media",
"//media",
"//media:shared_memory_support",
]
}
|