Skip to content

Commit 18dae41

Browse files
authored
Document test-only config settings. NFC (#23740)
1 parent abaae6c commit 18dae41

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

tools/config.py

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,10 @@
2020
# See parse_config_file below.
2121
EMSCRIPTEN_ROOT = __rootpath__
2222
NODE_JS = None
23-
NODE_JS_TEST = None
2423
BINARYEN_ROOT = None
25-
SPIDERMONKEY_ENGINE = None
26-
V8_ENGINE: Optional[List[str]] = None
27-
LLVM_ROOT = None
2824
LLVM_ADD_VERSION = None
2925
CLANG_ADD_VERSION = None
3026
CLOSURE_COMPILER = None
31-
JS_ENGINES: List[List[str]] = []
32-
WASMER = None
33-
WASMTIME = None
34-
WASM_ENGINES: List[List[str]] = []
3527
FROZEN_CACHE = None
3628
CACHE = None
3729
PORTS = None
@@ -40,6 +32,17 @@
4032
# Set by init()
4133
EM_CONFIG = None
4234

35+
# Settings that are only used for testing. emcc itself does not use
36+
# any of these.
37+
NODE_JS_TEST = None
38+
SPIDERMONKEY_ENGINE = None
39+
V8_ENGINE: Optional[List[str]] = None
40+
LLVM_ROOT = None
41+
JS_ENGINES: List[List[str]] = []
42+
WASMER = None
43+
WASMTIME = None
44+
WASM_ENGINES: List[List[str]] = []
45+
4346

4447
def listify(x):
4548
if x is None or type(x) is list:

0 commit comments

Comments
 (0)