summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2022-01-02 16:44:33 +0000
committerMoonchild <moonchild@palemoon.org>2022-01-02 16:44:33 +0000
commit7198c276ab584a86dc14f972ba8d64f022610713 (patch)
tree262b1faad77c5d694897f5d5ecac7b1cc27426c7 /python
parent0c2396808491278981bec84e8998b29ec19d297d (diff)
downloadaura-central-7198c276ab584a86dc14f972ba8d64f022610713.tar.gz
Issue %3015 - Part 1: Remove GMP support code.
Diffstat (limited to 'python')
-rw-r--r--python/mozbuild/mozbuild/mach_commands.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/python/mozbuild/mozbuild/mach_commands.py b/python/mozbuild/mozbuild/mach_commands.py
index 808773512..7923035fa 100644
--- a/python/mozbuild/mozbuild/mach_commands.py
+++ b/python/mozbuild/mozbuild/mach_commands.py
@@ -925,16 +925,6 @@ class GTestCommands(MachCommandBase):
# https://code.google.com/p/googletest/wiki/AdvancedGuide#Running_Test_Programs:_Advanced_Options
gtest_env = {b'GTEST_FILTER': gtest_filter}
- # Note: we must normalize the path here so that gtest on Windows sees
- # a MOZ_GMP_PATH which has only Windows dir seperators, because
- # nsILocalFile cannot open the paths with non-Windows dir seperators.
- xre_path = os.path.join(os.path.normpath(self.topobjdir), "dist", "bin")
- gtest_env["MOZ_XRE_DIR"] = xre_path
- gtest_env["MOZ_GMP_PATH"] = os.pathsep.join(
- os.path.join(xre_path, p, "1.0")
- for p in ('gmp-fake', 'gmp-fakeopenh264')
- )
-
gtest_env[b"MOZ_RUN_GTEST"] = b"True"
if shuffle: