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.cc", | 8 "copresence_manager.cc", |
9 "copresence_manager_impl.cc", | 9 "copresence_manager_impl.cc", |
| 10 "copresence_switches.cc", |
| 11 "copresence_switches.h", |
10 "handlers/audio/audio_directive_handler.cc", | 12 "handlers/audio/audio_directive_handler.cc", |
11 "handlers/audio/audio_directive_handler.h", | 13 "handlers/audio/audio_directive_handler.h", |
12 "handlers/audio/audio_directive_list.cc", | 14 "handlers/audio/audio_directive_list.cc", |
13 "handlers/audio/audio_directive_list.h", | 15 "handlers/audio/audio_directive_list.h", |
14 "handlers/directive_handler.cc", | 16 "handlers/directive_handler.cc", |
15 "handlers/directive_handler.h", | 17 "handlers/directive_handler.h", |
16 "mediums/audio/audio_player.cc", | 18 "mediums/audio/audio_player.cc", |
17 "mediums/audio/audio_player.h", | 19 "mediums/audio/audio_player.h", |
18 "mediums/audio/audio_recorder.cc", | 20 "mediums/audio/audio_recorder.cc", |
19 "mediums/audio/audio_recorder.h", | 21 "mediums/audio/audio_recorder.h", |
20 "public/copresence_constants.h", | 22 "public/copresence_constants.h", |
21 "public/copresence_delegate.h", | 23 "public/copresence_delegate.h", |
22 "public/copresence_manager.h", | 24 "public/copresence_manager.h", |
23 "public/whispernet_client.h", | 25 "public/whispernet_client.h", |
24 "rpc/http_post.cc", | 26 "rpc/http_post.cc", |
25 "rpc/http_post.h", | 27 "rpc/http_post.h", |
26 "rpc/rpc_handler.cc", | 28 "rpc/rpc_handler.cc", |
27 "rpc/rpc_handler.h", | 29 "rpc/rpc_handler.h", |
28 "timed_map.h", | 30 "timed_map.h", |
29 ] | 31 ] |
30 | 32 |
31 deps = [ | 33 deps = [ |
32 "//base", | 34 "//base", |
33 "//components/copresence/proto", | 35 "//components/copresence/proto", |
34 "//content", | 36 "//content", |
35 "//media", | 37 "//media", |
36 "//net", | 38 "//net", |
37 ] | 39 ] |
38 } | 40 } |
OLD | NEW |