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", | 10 "copresence_switches.cc", |
11 "copresence_switches.h", | 11 "copresence_switches.h", |
12 "handlers/audio/audio_directive_handler.cc", | 12 "handlers/audio/audio_directive_handler.cc", |
13 "handlers/audio/audio_directive_handler.h", | 13 "handlers/audio/audio_directive_handler.h", |
14 "handlers/audio/audio_directive_list.cc", | 14 "handlers/audio/audio_directive_list.cc", |
15 "handlers/audio/audio_directive_list.h", | 15 "handlers/audio/audio_directive_list.h", |
16 "handlers/directive_handler.cc", | 16 "handlers/directive_handler.cc", |
17 "handlers/directive_handler.h", | 17 "handlers/directive_handler.h", |
18 "mediums/audio/audio_player.cc", | 18 "mediums/audio/audio_manager.h", |
19 "mediums/audio/audio_manager_stub.cc", | |
20 "mediums/audio/audio_manager_stub.h", | |
21 "mediums/audio/audio_manager_impl.cc", | |
Daniel Erat
2014/10/22 16:34:34
here too
rkc
2014/10/22 18:21:47
Done.
| |
22 "mediums/audio/audio_manager_impl.h", | |
19 "mediums/audio/audio_player.h", | 23 "mediums/audio/audio_player.h", |
20 "mediums/audio/audio_recorder.cc", | 24 "mediums/audio/audio_player_stub.cc", |
25 "mediums/audio/audio_player_stub.h", | |
26 "mediums/audio/audio_player_impl.cc", | |
27 "mediums/audio/audio_player_impl.h", | |
21 "mediums/audio/audio_recorder.h", | 28 "mediums/audio/audio_recorder.h", |
29 "mediums/audio/audio_recorder_stub.cc", | |
30 "mediums/audio/audio_recorder_stub.h", | |
31 "mediums/audio/audio_recorder_impl.cc", | |
32 "mediums/audio/audio_recorder_impl.h", | |
22 "public/copresence_constants.h", | 33 "public/copresence_constants.h", |
23 "public/copresence_delegate.h", | 34 "public/copresence_delegate.h", |
24 "public/copresence_manager.h", | 35 "public/copresence_manager.h", |
25 "public/whispernet_client.h", | 36 "public/whispernet_client.h", |
26 "rpc/http_post.cc", | 37 "rpc/http_post.cc", |
27 "rpc/http_post.h", | 38 "rpc/http_post.h", |
28 "rpc/rpc_handler.cc", | 39 "rpc/rpc_handler.cc", |
29 "rpc/rpc_handler.h", | 40 "rpc/rpc_handler.h", |
30 "timed_map.h", | 41 "timed_map.h", |
31 ] | 42 ] |
32 | 43 |
33 deps = [ | 44 deps = [ |
34 "//base", | 45 "//base", |
35 "//components/copresence/proto", | 46 "//components/copresence/proto", |
36 "//content", | 47 "//content", |
37 "//media", | 48 "//media", |
38 "//net", | 49 "//net", |
39 ] | 50 ] |
40 } | 51 } |
OLD | NEW |