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

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

Issue 865483005: Creating the audio_modem component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merging again Created 5 years, 10 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
« no previous file with comments | « components/copresence.gypi ('k') | components/copresence/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
8 "copresence_manager_impl.cc", 7 "copresence_manager_impl.cc",
9 "copresence_state_impl.cc", 8 "copresence_state_impl.cc",
10 "copresence_state_impl.h", 9 "copresence_state_impl.h",
11 "copresence_switches.cc", 10 "copresence_switches.cc",
12 "copresence_switches.h", 11 "copresence_switches.h",
13 "handlers/audio/audio_directive_handler.h", 12 "handlers/audio/audio_directive_handler.h",
14 "handlers/audio/audio_directive_handler_impl.cc", 13 "handlers/audio/audio_directive_handler_impl.cc",
15 "handlers/audio/audio_directive_handler_impl.h", 14 "handlers/audio/audio_directive_handler_impl.h",
16 "handlers/audio/audio_directive_list.cc", 15 "handlers/audio/audio_directive_list.cc",
17 "handlers/audio/audio_directive_list.h", 16 "handlers/audio/audio_directive_list.h",
18 "handlers/audio/tick_clock_ref_counted.cc", 17 "handlers/audio/tick_clock_ref_counted.cc",
19 "handlers/audio/tick_clock_ref_counted.h", 18 "handlers/audio/tick_clock_ref_counted.h",
20 "handlers/directive_handler.h", 19 "handlers/directive_handler.h",
21 "handlers/directive_handler_impl.cc", 20 "handlers/directive_handler_impl.cc",
22 "handlers/directive_handler_impl.h", 21 "handlers/directive_handler_impl.h",
23 "handlers/gcm_handler.h", 22 "handlers/gcm_handler.h",
24 "handlers/gcm_handler_impl.cc", 23 "handlers/gcm_handler_impl.cc",
25 "handlers/gcm_handler_impl.h", 24 "handlers/gcm_handler_impl.h",
26 "mediums/audio/audio_manager.h",
27 "mediums/audio/audio_manager_impl.cc",
28 "mediums/audio/audio_manager_impl.h",
29 "mediums/audio/audio_player.h",
30 "mediums/audio/audio_player_impl.cc",
31 "mediums/audio/audio_player_impl.h",
32 "mediums/audio/audio_recorder.h",
33 "mediums/audio/audio_recorder_impl.cc",
34 "mediums/audio/audio_recorder_impl.h",
35 "public/copresence_constants.h", 25 "public/copresence_constants.h",
36 "public/copresence_delegate.h", 26 "public/copresence_delegate.h",
37 "public/copresence_manager.h", 27 "public/copresence_manager.h",
38 "public/copresence_observer.h", 28 "public/copresence_observer.h",
39 "public/copresence_state.h", 29 "public/copresence_state.h",
40 "public/whispernet_client.h",
41 "rpc/http_post.cc", 30 "rpc/http_post.cc",
42 "rpc/http_post.h", 31 "rpc/http_post.h",
43 "rpc/rpc_handler.cc", 32 "rpc/rpc_handler.cc",
44 "rpc/rpc_handler.h", 33 "rpc/rpc_handler.h",
45 "timed_map.h", 34 "timed_map.h",
46 "tokens.cc", 35 "tokens.cc",
47 "tokens.h", 36 "tokens.h",
48 ] 37 ]
49 38
50 deps = [ 39 deps = [
51 "//base", 40 "//base",
41 "//components/audio_modem",
52 "//components/copresence/proto", 42 "//components/copresence/proto",
53 "//content", 43 "//content",
54 "//media", 44 "//media",
55 "//net", 45 "//net",
56 "//third_party/webrtc/common_audio",
57 ] 46 ]
58 } 47 }
OLDNEW
« no previous file with comments | « components/copresence.gypi ('k') | components/copresence/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698