aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/platform/base.py
diff options
context:
space:
mode:
authorMartin Robinson <mrobinson@igalia.com>2024-01-24 13:12:05 +0100
committerGitHub <noreply@github.com>2024-01-24 12:12:05 +0000
commitaf6652fc098fee10cdf4d2ad67648e7d813f1ec8 (patch)
tree40330642a1c62b28d8b4622dba6672c96954d825 /python/servo/platform/base.py
parenteb95703325aeb48d5f56a8da5b258bad608dd632 (diff)
downloadservo-af6652fc098fee10cdf4d2ad67648e7d813f1ec8.tar.gz
servo-af6652fc098fee10cdf4d2ad67648e7d813f1ec8.zip
tests: Add GStreamer library directory to DYLD_LIBRARY_PATH (#31163)
This fixes an issue where the dylib for harfbuzz cannot be found when running unit tests on some systems, because unit tests don't get their rpaths adjusted during build. This is quite likely an issue with dylib dependency management. We just need a bit more exploration of how this is traditionally handled.
Diffstat (limited to 'python/servo/platform/base.py')
-rw-r--r--python/servo/platform/base.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/python/servo/platform/base.py b/python/servo/platform/base.py
index 7cb1a9b0996..b654a43cd5c 100644
--- a/python/servo/platform/base.py
+++ b/python/servo/platform/base.py
@@ -26,9 +26,6 @@ class Base:
def gstreamer_root(self, _cross_compilation_target: Optional[str]) -> Optional[str]:
raise NotImplementedError("Do not know how to get GStreamer path for platform.")
- def library_path_variable_name(self):
- raise NotImplementedError("Do not know how to set library path for platform.")
-
def executable_suffix(self) -> str:
return ""