OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 static_library("copresence") { | 5 static_library("copresence") { |
6 sources = [ | 6 sources = [ |
7 "copresence_constants.cc", | 7 "copresence_constants.cc", |
8 "copresence_manager_impl.cc", | 8 "copresence_manager_impl.cc", |
| 9 "copresence_state_impl.cc", |
| 10 "copresence_state_impl.h", |
9 "copresence_switches.cc", | 11 "copresence_switches.cc", |
10 "copresence_switches.h", | 12 "copresence_switches.h", |
11 "handlers/audio/audio_directive_handler.h", | 13 "handlers/audio/audio_directive_handler.h", |
12 "handlers/audio/audio_directive_handler_impl.cc", | 14 "handlers/audio/audio_directive_handler_impl.cc", |
13 "handlers/audio/audio_directive_handler_impl.h", | 15 "handlers/audio/audio_directive_handler_impl.h", |
14 "handlers/audio/audio_directive_list.cc", | 16 "handlers/audio/audio_directive_list.cc", |
15 "handlers/audio/audio_directive_list.h", | 17 "handlers/audio/audio_directive_list.h", |
16 "handlers/audio/tick_clock_ref_counted.cc", | 18 "handlers/audio/tick_clock_ref_counted.cc", |
17 "handlers/audio/tick_clock_ref_counted.h", | 19 "handlers/audio/tick_clock_ref_counted.h", |
18 "handlers/directive_handler.h", | 20 "handlers/directive_handler.h", |
19 "handlers/directive_handler_impl.cc", | 21 "handlers/directive_handler_impl.cc", |
20 "handlers/directive_handler_impl.h", | 22 "handlers/directive_handler_impl.h", |
21 "handlers/gcm_handler.h", | 23 "handlers/gcm_handler.h", |
22 "handlers/gcm_handler_impl.cc", | 24 "handlers/gcm_handler_impl.cc", |
23 "handlers/gcm_handler_impl.h", | 25 "handlers/gcm_handler_impl.h", |
24 "mediums/audio/audio_manager.h", | 26 "mediums/audio/audio_manager.h", |
25 "mediums/audio/audio_manager_impl.cc", | 27 "mediums/audio/audio_manager_impl.cc", |
26 "mediums/audio/audio_manager_impl.h", | 28 "mediums/audio/audio_manager_impl.h", |
27 "mediums/audio/audio_player.h", | 29 "mediums/audio/audio_player.h", |
28 "mediums/audio/audio_player_impl.cc", | 30 "mediums/audio/audio_player_impl.cc", |
29 "mediums/audio/audio_player_impl.h", | 31 "mediums/audio/audio_player_impl.h", |
30 "mediums/audio/audio_recorder.h", | 32 "mediums/audio/audio_recorder.h", |
31 "mediums/audio/audio_recorder_impl.cc", | 33 "mediums/audio/audio_recorder_impl.cc", |
32 "mediums/audio/audio_recorder_impl.h", | 34 "mediums/audio/audio_recorder_impl.h", |
33 "public/copresence_constants.h", | 35 "public/copresence_constants.h", |
34 "public/copresence_delegate.h", | 36 "public/copresence_delegate.h", |
35 "public/copresence_manager.h", | 37 "public/copresence_manager.h", |
| 38 "public/copresence_observer.h", |
| 39 "public/copresence_state.h", |
36 "public/whispernet_client.h", | 40 "public/whispernet_client.h", |
37 "rpc/http_post.cc", | 41 "rpc/http_post.cc", |
38 "rpc/http_post.h", | 42 "rpc/http_post.h", |
39 "rpc/rpc_handler.cc", | 43 "rpc/rpc_handler.cc", |
40 "rpc/rpc_handler.h", | 44 "rpc/rpc_handler.h", |
41 "timed_map.h", | 45 "timed_map.h", |
| 46 "tokens.cc", |
| 47 "tokens.h", |
42 ] | 48 ] |
43 | 49 |
44 deps = [ | 50 deps = [ |
45 "//base", | 51 "//base", |
46 "//components/copresence/proto", | 52 "//components/copresence/proto", |
47 "//content", | 53 "//content", |
48 "//media", | 54 "//media", |
49 "//net", | 55 "//net", |
50 ] | 56 ] |
51 } | 57 } |
OLD | NEW |