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

Unified Diff: webrtc/webrtc.gyp

Issue 1227923005: Split webrtc/video into webrtc/{audio,call,video}. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 3 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
« no previous file with comments | « webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc ('k') | webrtc/webrtc_tests.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/webrtc.gyp
diff --git a/webrtc/webrtc.gyp b/webrtc/webrtc.gyp
index 283aa462087dce91eb78730d6082aec04ab090d6..13d88b3a14e4a9f1c2a2e37e136905c88319b491 100644
--- a/webrtc/webrtc.gyp
+++ b/webrtc/webrtc.gyp
@@ -22,10 +22,10 @@
# This target should only be built if enable_protobuf is defined
'target_name': 'rtc_event_log_proto',
'type': 'static_library',
- 'sources': ['video/rtc_event_log.proto',],
+ 'sources': ['call/rtc_event_log.proto',],
'variables': {
- 'proto_in_dir': 'video',
- 'proto_out_dir': 'webrtc/video',
+ 'proto_in_dir': 'call',
+ 'proto_out_dir': 'webrtc/call',
},
'includes': ['build/protoc.gypi'],
},
@@ -36,7 +36,7 @@
{
'target_name': 'rtc_event_log2rtp_dump',
'type': 'executable',
- 'sources': ['video/rtc_event_log2rtp_dump.cc',],
+ 'sources': ['call/rtc_event_log2rtp_dump.cc',],
'dependencies': [
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
'rtc_event_log',
@@ -49,6 +49,8 @@
],
'includes': [
'build/common.gypi',
+ 'audio/webrtc_audio.gypi',
+ 'call/webrtc_call.gypi',
'video/webrtc_video.gypi',
],
'variables': {
@@ -105,10 +107,14 @@
'video_renderer.h',
'video_send_stream.h',
+ '<@(webrtc_audio_sources)',
+ '<@(webrtc_call_sources)',
'<@(webrtc_video_sources)',
],
'dependencies': [
'common.gyp:*',
+ '<@(webrtc_audio_dependencies)',
+ '<@(webrtc_call_dependencies)',
'<@(webrtc_video_dependencies)',
'rtc_event_log',
],
@@ -127,8 +133,8 @@
'target_name': 'rtc_event_log',
'type': 'static_library',
'sources': [
- 'video/rtc_event_log.cc',
- 'video/rtc_event_log.h',
+ 'call/rtc_event_log.cc',
+ 'call/rtc_event_log.h',
],
'conditions': [
# If enable_protobuf is defined, we want to compile the protobuf
« no previous file with comments | « webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc ('k') | webrtc/webrtc_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698