Index: webrtc/BUILD.gn |
diff --git a/webrtc/BUILD.gn b/webrtc/BUILD.gn |
index b31a07c83da4322974da14a3367082f03a6edf6b..168207bec25599bee3a08ae132921d0e946ea217 100644 |
--- a/webrtc/BUILD.gn |
+++ b/webrtc/BUILD.gn |
@@ -84,6 +84,10 @@ config("common_config") { |
all_dependent_configs = [ "dbus-glib" ] |
} |
+ if (rtc_relative_path) { |
+ defines += [ "EXPAT_RELATIVE_PATH" ] |
+ } |
+ |
if (build_with_chromium) { |
defines += [ "LOGGING_INSIDE_WEBRTC" ] |
} else { |
@@ -182,11 +186,13 @@ source_set("webrtc") { |
deps = [ |
":webrtc_common", |
+ "api", |
"audio", |
"base:rtc_base", |
"call", |
"common_audio", |
"common_video", |
+ "media", |
"modules/audio_coding", |
"modules/audio_conference_mixer", |
"modules/audio_device", |
@@ -198,6 +204,8 @@ source_set("webrtc") { |
"modules/utility", |
"modules/video_coding", |
"modules/video_processing", |
+ "p2p", |
+ "pc", |
"system_wrappers", |
"tools", |
"video", |