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