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

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

Issue 419073002: Add the copresence DirectiveHandler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
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_client.cc", 7 "copresence_client.cc",
8 "copresence_constants.cc",
9 "handlers/audio/audio_directive_handler.cc",
10 "handlers/audio/audio_directive_handler.h",
11 "handlers/audio/audio_directive_list.cc",
12 "handlers/audio/audio_directive_list.h",
13 "handlers/directive_handler.cc",
14 "handlers/directive_handler.h",
15 "mediums/audio/audio_player.cc",
16 "mediums/audio/audio_player.h",
17 "mediums/audio/audio_recorder.cc",
18 "mediums/audio/audio_recorder.h",
8 "public/copresence_client_delegate.h", 19 "public/copresence_client_delegate.h",
9 "public/copresence_client.h", 20 "public/copresence_client.h",
21 "public/copresence_constants.h",
10 "public/whispernet_client.h", 22 "public/whispernet_client.h",
11 "rpc/rpc_handler.cc", 23 "rpc/rpc_handler.cc",
12 "rpc/rpc_handler.h", 24 "rpc/rpc_handler.h",
25 "timed_map.h",
13 ] 26 ]
14 27
15 deps = [ 28 deps = [
16 "//base", 29 "//base",
30 "//content",
Daniel Erat 2014/08/05 16:38:51 nit: fix sorting
rkc 2014/08/05 18:00:35 Done.
17 "//components/copresence/proto", 31 "//components/copresence/proto",
32 "//media",
18 "//net", 33 "//net",
19 ] 34 ]
20 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698