mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
Backed out changeset 79936a3ffd56 (bug 1727266) for causing failures on test_hunspell.js
This commit is contained in:
parent
e18539817c
commit
a4e5f895f8
@ -50,7 +50,6 @@ win32-mingwclang/opt:
|
||||
- linux64-mingw-fxc2-x86
|
||||
- linux64-dump_syms
|
||||
- sysroot-x86_64-linux-gnu
|
||||
- sysroot-wasm32-wasi
|
||||
|
||||
win32-mingwclang/debug:
|
||||
description: "Win32 MinGW-Clang Debug"
|
||||
@ -87,7 +86,6 @@ win32-mingwclang/debug:
|
||||
- linux64-mingw-fxc2-x86
|
||||
- linux64-dump_syms
|
||||
- sysroot-x86_64-linux-gnu
|
||||
- sysroot-wasm32-wasi
|
||||
|
||||
win64-mingwclang/opt:
|
||||
description: "Win64 MinGW-Clang Opt"
|
||||
|
@ -61,7 +61,6 @@ win32/debug:
|
||||
- linux64-liblowercase
|
||||
- linux64-winchecksec
|
||||
- sysroot-x86_64-linux-gnu
|
||||
- sysroot-wasm32-wasi
|
||||
fetch:
|
||||
- nsis-3.01-win
|
||||
- upx-3.95-win
|
||||
@ -116,7 +115,6 @@ win32/opt:
|
||||
- linux64-liblowercase
|
||||
- linux64-winchecksec
|
||||
- sysroot-x86_64-linux-gnu
|
||||
- sysroot-wasm32-wasi
|
||||
fetch:
|
||||
- nsis-3.01-win
|
||||
- upx-3.95-win
|
||||
@ -490,7 +488,6 @@ win32-shippable/opt:
|
||||
- linux64-liblowercase
|
||||
- linux64-winchecksec
|
||||
- sysroot-x86_64-linux-gnu
|
||||
- sysroot-wasm32-wasi
|
||||
fetch:
|
||||
- nsis-3.01-win
|
||||
- upx-3.95-win
|
||||
@ -600,7 +597,6 @@ win32-add-on-devel/opt:
|
||||
- linux64-liblowercase
|
||||
- linux64-winchecksec
|
||||
- sysroot-x86_64-linux-gnu
|
||||
- sysroot-wasm32-wasi
|
||||
fetch:
|
||||
- nsis-3.01-win
|
||||
- upx-3.95-win
|
||||
@ -756,7 +752,6 @@ win32-noopt/debug:
|
||||
- linux64-liblowercase
|
||||
- linux64-winchecksec
|
||||
- sysroot-x86_64-linux-gnu
|
||||
- sysroot-wasm32-wasi
|
||||
fetch:
|
||||
- nsis-3.01-win
|
||||
- upx-3.95-win
|
||||
@ -802,7 +797,6 @@ win32-rusttests/opt:
|
||||
- win64-node
|
||||
- win64-winchecksec
|
||||
- win64-mozmake
|
||||
- sysroot-wasm32-wasi
|
||||
optimization:
|
||||
test-inclusive: [rusttests]
|
||||
|
||||
@ -847,7 +841,6 @@ win32-rusttests/debug:
|
||||
- win64-node
|
||||
- win64-winchecksec
|
||||
- win64-mozmake
|
||||
- sysroot-wasm32-wasi
|
||||
optimization:
|
||||
test-inclusive: [rusttests]
|
||||
|
||||
@ -1275,7 +1268,6 @@ win32-devedition/opt:
|
||||
- linux64-liblowercase
|
||||
- linux64-winchecksec
|
||||
- sysroot-x86_64-linux-gnu
|
||||
- sysroot-wasm32-wasi
|
||||
fetch:
|
||||
- nsis-3.01-win
|
||||
- upx-3.95-win
|
||||
|
@ -67,7 +67,6 @@ jobs:
|
||||
- linux64-node
|
||||
- sysroot-i686-linux-gnu
|
||||
- sysroot-x86_64-linux-gnu
|
||||
- sysroot-wasm32-wasi
|
||||
|
||||
linux64-shippable/opt:
|
||||
description: "Linux64 Instrumented"
|
||||
@ -263,7 +262,6 @@ jobs:
|
||||
- linux64-liblowercase
|
||||
- linux64-winchecksec
|
||||
- sysroot-x86_64-linux-gnu
|
||||
- sysroot-wasm32-wasi
|
||||
fetch:
|
||||
- nsis-3.01-win
|
||||
- upx-3.95-win
|
||||
|
@ -2070,14 +2070,10 @@ def wasm_sandboxing_libraries():
|
||||
@depends(dependable(wasm_sandboxing_libraries), target, "MOZ_AUTOMATION")
|
||||
def default_wasm_sandboxing_libraries(libraries, target, automation):
|
||||
if automation and (
|
||||
(
|
||||
target.kernel == "Linux"
|
||||
and target.os == "GNU"
|
||||
and target.cpu in ("x86", "x86_64")
|
||||
)
|
||||
(target.kernel == "Linux" and target.os == "GNU" and target.cpu == "x86_64")
|
||||
or (target.os == "Android" and target.bitness == 64)
|
||||
or (target.kernel == "Darwin" and target.bitness == 64)
|
||||
or target.kernel == "WINNT"
|
||||
or (target.kernel == "WINNT" and target.bitness == 64)
|
||||
):
|
||||
return libraries
|
||||
|
||||
@ -2196,11 +2192,14 @@ with only_when(requires_wasm_sandboxing & compile_environment):
|
||||
set_config("WASM_CXXFLAGS", wasm_cxxflags)
|
||||
|
||||
|
||||
@depends("--with-wasm-sandboxed-libraries")
|
||||
def wasm_sandboxing(libraries):
|
||||
@depends("--with-wasm-sandboxed-libraries", target)
|
||||
def wasm_sandboxing(libraries, target):
|
||||
if not libraries:
|
||||
return
|
||||
|
||||
if target.bitness != 64:
|
||||
die("wasm sandboxing is only supported on 64-bits platforms")
|
||||
|
||||
return namespace(**{name: True for name in libraries})
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user