| 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_switches.cc", | 9 "copresence_switches.cc", |
| 10 "copresence_switches.h", | 10 "copresence_switches.h", |
| 11 "handlers/audio/audio_directive_handler.cc", | |
| 12 "handlers/audio/audio_directive_handler.h", | 11 "handlers/audio/audio_directive_handler.h", |
| 12 "handlers/audio/audio_directive_handler_impl.cc", |
| 13 "handlers/audio/audio_directive_handler_impl.h", |
| 13 "handlers/audio/audio_directive_list.cc", | 14 "handlers/audio/audio_directive_list.cc", |
| 14 "handlers/audio/audio_directive_list.h", | 15 "handlers/audio/audio_directive_list.h", |
| 15 "handlers/audio/tick_clock_ref_counted.cc", | 16 "handlers/audio/tick_clock_ref_counted.cc", |
| 16 "handlers/audio/tick_clock_ref_counted.h", | 17 "handlers/audio/tick_clock_ref_counted.h", |
| 17 "handlers/directive_handler.cc", | 18 "handlers/directive_handler.cc", |
| 18 "handlers/directive_handler.h", | 19 "handlers/directive_handler.h", |
| 19 "mediums/audio/audio_manager.h", | 20 "mediums/audio/audio_manager.h", |
| 20 "mediums/audio/audio_manager_impl.cc", | 21 "mediums/audio/audio_manager_impl.cc", |
| 21 "mediums/audio/audio_manager_impl.h", | 22 "mediums/audio/audio_manager_impl.h", |
| 22 "mediums/audio/audio_player.h", | 23 "mediums/audio/audio_player.h", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 37 ] | 38 ] |
| 38 | 39 |
| 39 deps = [ | 40 deps = [ |
| 40 "//base", | 41 "//base", |
| 41 "//components/copresence/proto", | 42 "//components/copresence/proto", |
| 42 "//content", | 43 "//content", |
| 43 "//media", | 44 "//media", |
| 44 "//net", | 45 "//net", |
| 45 ] | 46 ] |
| 46 } | 47 } |
| OLD | NEW |