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
|
# Copyright 2014 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("copresence") {
sources = [
"copresence_constants.cc",
"copresence_manager_impl.cc",
"copresence_state_impl.cc",
"copresence_state_impl.h",
"copresence_switches.cc",
"copresence_switches.h",
"handlers/audio/audio_directive_handler.h",
"handlers/audio/audio_directive_handler_impl.cc",
"handlers/audio/audio_directive_handler_impl.h",
"handlers/audio/audio_directive_list.cc",
"handlers/audio/audio_directive_list.h",
"handlers/audio/tick_clock_ref_counted.cc",
"handlers/audio/tick_clock_ref_counted.h",
"handlers/directive_handler.h",
"handlers/directive_handler_impl.cc",
"handlers/directive_handler_impl.h",
"handlers/gcm_handler.h",
"handlers/gcm_handler_impl.cc",
"handlers/gcm_handler_impl.h",
"mediums/audio/audio_manager.h",
"mediums/audio/audio_manager_impl.cc",
"mediums/audio/audio_manager_impl.h",
"mediums/audio/audio_player.h",
"mediums/audio/audio_player_impl.cc",
"mediums/audio/audio_player_impl.h",
"mediums/audio/audio_recorder.h",
"mediums/audio/audio_recorder_impl.cc",
"mediums/audio/audio_recorder_impl.h",
"public/copresence_constants.h",
"public/copresence_delegate.h",
"public/copresence_manager.h",
"public/copresence_observer.h",
"public/copresence_state.h",
"public/whispernet_client.h",
"rpc/http_post.cc",
"rpc/http_post.h",
"rpc/rpc_handler.cc",
"rpc/rpc_handler.h",
"timed_map.h",
"tokens.cc",
"tokens.h",
]
deps = [
"//base",
"//components/copresence/proto",
"//content",
"//media",
"//net",
"//third_party/webrtc/common_audio",
]
}
|