Update gn files to support Mozilla build

Bug: webrtc:8670
No-Presubmit: true
Change-Id: I085dc63daa8274b5068540cbf56b6330f40643fa
Reviewed-on: https://webrtc-review.googlesource.com/38920
Commit-Queue: Patrik Höglund <phoglund@webrtc.org>
Reviewed-by: Patrik Höglund <phoglund@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21624}
diff --git a/call/BUILD.gn b/call/BUILD.gn
index 94b0f15..d7ed4d9 100644
--- a/call/BUILD.gn
+++ b/call/BUILD.gn
@@ -11,7 +11,6 @@
 rtc_source_set("call_interfaces") {
   sources = [
     "audio_receive_stream.h",
-    "audio_send_stream.cc",
     "audio_send_stream.h",
     "audio_state.h",
     "call.h",
@@ -20,6 +19,9 @@
     "syncable.cc",
     "syncable.h",
   ]
+  if (!build_with_mozilla) {
+    sources += [ "audio_send_stream.cc" ]
+  }
   deps = [
     ":rtp_interfaces",
     ":video_stream_api",