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

Side by Side Diff: webrtc/voice_engine/BUILD.gn

Issue 2037623002: Move FilePlayer and FileRecorder to Voice Engine (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@remove0
Patch Set: GN build fix Created 4 years, 6 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 | « webrtc/modules/utility/utility.gypi ('k') | webrtc/voice_engine/channel.h » ('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 (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 10
11 source_set("voice_engine") { 11 source_set("voice_engine") {
12 sources = [ 12 sources = [
13 "channel.cc", 13 "channel.cc",
14 "channel.h", 14 "channel.h",
15 "channel_manager.cc", 15 "channel_manager.cc",
16 "channel_manager.h", 16 "channel_manager.h",
17 "channel_proxy.cc", 17 "channel_proxy.cc",
18 "channel_proxy.h", 18 "channel_proxy.h",
19 "coder.cc",
20 "coder.h",
21 "file_player.h",
22 "file_player_impl.cc",
23 "file_player_impl.h",
24 "file_recorder.h",
25 "file_recorder_impl.cc",
26 "file_recorder_impl.h",
19 "include/voe_audio_processing.h", 27 "include/voe_audio_processing.h",
20 "include/voe_base.h", 28 "include/voe_base.h",
21 "include/voe_codec.h", 29 "include/voe_codec.h",
22 "include/voe_errors.h", 30 "include/voe_errors.h",
23 "include/voe_external_media.h", 31 "include/voe_external_media.h",
24 "include/voe_file.h", 32 "include/voe_file.h",
25 "include/voe_hardware.h", 33 "include/voe_hardware.h",
26 "include/voe_neteq_stats.h", 34 "include/voe_neteq_stats.h",
27 "include/voe_network.h", 35 "include/voe_network.h",
28 "include/voe_rtp_rtcp.h", 36 "include/voe_rtp_rtcp.h",
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 "../modules/audio_device", 107 "../modules/audio_device",
100 "../modules/audio_processing", 108 "../modules/audio_processing",
101 "../modules/bitrate_controller", 109 "../modules/bitrate_controller",
102 "../modules/media_file", 110 "../modules/media_file",
103 "../modules/pacing", 111 "../modules/pacing",
104 "../modules/rtp_rtcp", 112 "../modules/rtp_rtcp",
105 "../modules/utility", 113 "../modules/utility",
106 "../system_wrappers", 114 "../system_wrappers",
107 ] 115 ]
108 } 116 }
OLDNEW
« no previous file with comments | « webrtc/modules/utility/utility.gypi ('k') | webrtc/voice_engine/channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698