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

Unified Diff: webrtc/modules/audio_coding/main/acm2/audio_coding_module.gypi

Issue 1250383003: Revert "Renamed the ACMDump to RtcEventLog and moved it to webrtc/video, since it is not specific t… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/main/acm2/audio_coding_module.gypi
diff --git a/webrtc/modules/audio_coding/main/acm2/audio_coding_module.gypi b/webrtc/modules/audio_coding/main/acm2/audio_coding_module.gypi
index 9a38faca822f9ac8d858a952af17561e1e5f20b4..13b1d4e73fd24f349389bf64891b35cdd18519ce 100644
--- a/webrtc/modules/audio_coding/main/acm2/audio_coding_module.gypi
+++ b/webrtc/modules/audio_coding/main/acm2/audio_coding_module.gypi
@@ -78,8 +78,40 @@
'nack.h',
],
},
+ {
+ 'target_name': 'acm_dump',
+ 'type': 'static_library',
+ 'conditions': [
+ ['enable_protobuf==1', {
+ 'defines': ['RTC_AUDIOCODING_DEBUG_DUMP'],
+ 'dependencies': ['acm_dump_proto'],
+ }
+ ],
+ ],
+ 'sources': [
+ 'acm_dump.h',
+ 'acm_dump.cc'
+ ],
+ },
],
'conditions': [
+ ['enable_protobuf==1', {
+ 'targets': [
+ {
+ 'target_name': 'acm_dump_proto',
+ 'type': 'static_library',
+ 'sources': ['dump.proto',],
+ 'variables': {
+ 'proto_in_dir': '.',
+ # Workaround to protect against gyp's pathname relativization when
+ # this file is included by modules.gyp.
+ 'proto_out_protected': 'webrtc/audio_coding',
+ 'proto_out_dir': '<(proto_out_protected)',
+ },
+ 'includes': ['../../../../build/protoc.gypi',],
+ },
+ ]
+ }],
['include_tests==1', {
'targets': [
{
« no previous file with comments | « webrtc/modules/audio_coding/main/acm2/acm_dump_unittest.cc ('k') | webrtc/modules/audio_coding/main/acm2/dump.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698