Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(842)

Side by Side Diff: components/copresence/BUILD.gn

Issue 665353002: Add AudioDirectiveHandler timed tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@audio_redesign
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/audio/tick_clock_ref_counted.cc",
17 "handlers/audio/tick_clock_ref_counted.h",
16 "handlers/directive_handler.cc", 18 "handlers/directive_handler.cc",
17 "handlers/directive_handler.h", 19 "handlers/directive_handler.h",
18 "mediums/audio/audio_manager.cc", 20 "mediums/audio/audio_manager.cc",
19 "mediums/audio/audio_manager.h", 21 "mediums/audio/audio_manager.h",
20 "mediums/audio/audio_player.cc", 22 "mediums/audio/audio_player.cc",
21 "mediums/audio/audio_player.h", 23 "mediums/audio/audio_player.h",
22 "mediums/audio/audio_recorder.cc", 24 "mediums/audio/audio_recorder.cc",
23 "mediums/audio/audio_recorder.h", 25 "mediums/audio/audio_recorder.h",
24 "public/copresence_constants.h", 26 "public/copresence_constants.h",
25 "public/copresence_delegate.h", 27 "public/copresence_delegate.h",
26 "public/copresence_manager.h", 28 "public/copresence_manager.h",
27 "public/whispernet_client.h", 29 "public/whispernet_client.h",
28 "rpc/http_post.cc", 30 "rpc/http_post.cc",
29 "rpc/http_post.h", 31 "rpc/http_post.h",
30 "rpc/rpc_handler.cc", 32 "rpc/rpc_handler.cc",
31 "rpc/rpc_handler.h", 33 "rpc/rpc_handler.h",
32 "timed_map.h", 34 "timed_map.h",
33 ] 35 ]
34 36
35 deps = [ 37 deps = [
36 "//base", 38 "//base",
37 "//components/copresence/proto", 39 "//components/copresence/proto",
38 "//content", 40 "//content",
39 "//media", 41 "//media",
40 "//net", 42 "//net",
41 ] 43 ]
42 } 44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698