Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/libwebrtc/moz-patch-stack/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 3 kB image not shown  

Quelle  s0094.patch   Sprache: unbekannt

 
Spracherkennung für: .patch vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

From: Michael Froman <mfroman@mozilla.com>
Date: Tue, 1 Oct 2024 21:05:00 +0000
Subject: Bug 1921706 - use relative paths on deps in a few places to avoid
 future issues. r=ng,webrtc-reviewers DONTBUILD

Note: this produces no changes in the generated moz.build files.

Differential Revision: https://phabricator.services.mozilla.com/D224070
Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/bbec1b95ddb5e00967a0fb002f54f8f24336b904
---
 modules/audio_coding/BUILD.gn  |  2 +-
 modules/portal/BUILD.gn        |  8 ++++----
 modules/video_capture/BUILD.gn |  2 +-
 sdk/BUILD.gn                   | 14 ++++++++++++++
 test/BUILD.gn                  |  6 ++++++
 5 files changed, 26 insertions(+), 6 deletions(-)

diff --git a/modules/audio_coding/BUILD.gn b/modules/audio_coding/BUILD.gn
index 1327e33ebf..fd4c18c076 100644
--- a/modules/audio_coding/BUILD.gn
+++ b/modules/audio_coding/BUILD.gn
@@ -338,7 +338,7 @@ rtc_library("webrtc_opus_wrapper") {
     deps += [ rtc_opus_dir ]
     public_configs = [ "//third_party/opus:opus_config" ]
   } else if (build_with_mozilla) {
-    public_configs = [ "//third_party/opus:opus_config" ]
+    public_configs = [ "../../third_party/opus:opus_config" ]
   }
 }
 
diff --git a/modules/portal/BUILD.gn b/modules/portal/BUILD.gn
index 11c8285abe..70466453f4 100644
--- a/modules/portal/BUILD.gn
+++ b/modules/portal/BUILD.gn
@@ -143,10 +143,10 @@ if (!build_with_mozilla) {
       deps -= [ ":pipewire_stubs" ]
       defines -= [ "WEBRTC_DLOPEN_PIPEWIRE" ]
       public_deps = [
-        "//third_party/pipewire",
-        "//third_party/drm",
-        "//third_party/gbm",
-        "//third_party/libepoxy"
+        "../../third_party/pipewire",
+        "../../third_party/drm",
+        "../../third_party/gbm",
+        "../../third_party/libepoxy"
       ]
     }
   }
diff --git a/modules/video_capture/BUILD.gn b/modules/video_capture/BUILD.gn
index 6feba4a247..8f9c8bb2c9 100644
--- a/modules/video_capture/BUILD.gn
+++ b/modules/video_capture/BUILD.gn
@@ -118,7 +118,7 @@ if (!build_with_chromium || is_linux || is_chromeos) {
         ]
         if (build_with_mozilla) {
           configs -= [ "../portal:pipewire_base" ]
-          public_deps = [ "//third_party/pipewire" ]
+          public_deps = [ "../../third_party/pipewire" ]
         }
       }
     }
diff --git a/sdk/BUILD.gn b/sdk/BUILD.gn
index b99dfe0a71..a4ba1541de 100644
--- a/sdk/BUILD.gn
+++ b/sdk/BUILD.gn
@@ -616,6 +616,20 @@ if (is_ios || is_mac) {
         "CoreGraphics.framework",
         "CoreVideo.framework",
       ]
+      if (build_with_mozilla) {
+        deps -= [
+          "//api/video:video_frame",
+          "//api/video:video_rtp_headers",
+          "//common_video",
+          "//rtc_base:checks",
+        ]
+        deps += [
+          "../api/video:video_frame",
+          "../api/video:video_rtp_headers",
+          "../common_video",
+          "../rtc_base:checks",
+        ]
+      }
     }
 
     if (!build_with_mozilla) {
diff --git a/test/BUILD.gn b/test/BUILD.gn
index a85b7a6c1a..4fd594eb28 100644
--- a/test/BUILD.gn
+++ b/test/BUILD.gn
@@ -479,6 +479,12 @@ rtc_source_set("test_support") {
     "//testing/gmock",
     "//testing/gtest",
   ]
+  if (build_with_mozilla) {
+    all_dependent_configs -= [
+      "//third_party/googletest:gmock_config",
+      "//third_party/googletest:gtest_config",
+    ]
+  }
 }
 
 rtc_library("fixed_fps_video_frame_writer_adapter") {

[Dauer der Verarbeitung: 0.43 Sekunden]