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
|
# 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.
static_library("audio_modem") {
sources = [
"audio_modem_switches.cc",
"audio_modem_switches.h",
"audio_player.h",
"audio_player_impl.cc",
"audio_player_impl.h",
"audio_recorder.h",
"audio_recorder_impl.cc",
"audio_recorder_impl.h",
"constants.cc",
"modem_impl.cc",
"modem_impl.h",
"public/audio_modem_types.h",
"public/modem.h",
"public/whispernet_client.h",
]
deps = [
"//base",
"//content",
"//media",
"//third_party/webrtc/common_audio",
]
}
static_library("audio_modem_test_support") {
sources = [
"test/random_samples.cc",
"test/random_samples.h",
"test/stub_modem.cc",
"test/stub_modem.h",
"test/stub_whispernet_client.cc",
"test/stub_whispernet_client.h",
]
deps = [
"//base",
"//media",
]
}
|