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

Side by Side Diff: webrtc/modules/audio_coding/main/audio_coding_module.gypi

Issue 1267683002: Hooked up RtcEventLog. It lives in Voice Engine and pointers are propagated to ACM and Call. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Processed more comments from Henrik. Created 5 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
OLDNEW
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 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 { 9 {
10 'variables': { 10 'variables': {
(...skipping 21 matching lines...) Expand all
32 'targets': [ 32 'targets': [
33 { 33 {
34 'target_name': 'audio_coding_module', 34 'target_name': 'audio_coding_module',
35 'type': 'static_library', 35 'type': 'static_library',
36 'defines': [ 36 'defines': [
37 '<@(audio_coding_defines)', 37 '<@(audio_coding_defines)',
38 ], 38 ],
39 'dependencies': [ 39 'dependencies': [
40 '<@(audio_coding_dependencies)', 40 '<@(audio_coding_dependencies)',
41 '<(webrtc_root)/common.gyp:webrtc_common', 41 '<(webrtc_root)/common.gyp:webrtc_common',
42 '<(webrtc_root)/webrtc.gyp:rtc_event_log',
42 'neteq', 43 'neteq',
43 ], 44 ],
44 'include_dirs': [ 45 'include_dirs': [
45 'interface', 46 'interface',
46 '../../interface', 47 '../../interface',
47 '<(webrtc_root)', 48 '<(webrtc_root)',
48 ], 49 ],
49 'direct_dependent_settings': { 50 'direct_dependent_settings': {
50 'include_dirs': [ 51 'include_dirs': [
51 'interface', 52 'interface',
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 'sources': [ 155 'sources': [
155 'test/insert_packet_with_timing.cc', 156 'test/insert_packet_with_timing.cc',
156 'test/Channel.cc', 157 'test/Channel.cc',
157 'test/PCMFile.cc', 158 'test/PCMFile.cc',
158 ], 159 ],
159 }, # delay_test 160 }, # delay_test
160 ], 161 ],
161 }], 162 }],
162 ], 163 ],
163 } 164 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698