Skip to content

Commit b050708

Browse files
committed
remove gdb and firefox from launch.json. gdb is no longer used. Firefox does not work.
1 parent c6646df commit b050708

File tree

1 file changed

+13
-48
lines changed

1 file changed

+13
-48
lines changed

.vscode/launch.json

Lines changed: 13 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,17 @@
11
{
22
"configurations": [
3-
{
4-
"type": "firefox",
5-
"request": "launch",
6-
"reAttach": true,
7-
"name": "Launch Examples firefox",
8-
"file": "${workspaceFolder}/examples/index.html",
9-
"firefoxArgs": [
10-
"--enable-features=SharedArrayBuffers"
11-
]
12-
},
13-
{
14-
"name": "Examples",
15-
"type": "chrome",
16-
"request": "launch",
17-
"runtimeArgs": [
18-
"--allow-file-access-from-files",
19-
"--autoplay-policy=no-user-gesture-required",
20-
"--enable-features=SharedArrayBuffer"
21-
],
22-
"file": "${workspaceFolder}/examples/index.html",
23-
"cwd": "${workspaceFolder}/examples/"
24-
},
25-
{
26-
"name": "(gdb) Launch twr-wasm unit tests",
27-
"type": "cppdbg",
28-
"request": "launch",
29-
"program": "${workspaceFolder}/source/unit-test/out/test.exe",
30-
"args": [],
31-
"stopAtEntry": false,
32-
"cwd": "${workspaceFolder}/source/unit-test/out/",
33-
"environment": [],
34-
"externalConsole": false,
35-
"MIMode": "gdb",
36-
"miDebuggerPath": "gdb",
37-
"setupCommands": [
38-
{
39-
"description": "Enable pretty-printing for gdb",
40-
"text": "-enable-pretty-printing",
41-
"ignoreFailures": true
42-
},
43-
{
44-
"description": "Set Disassembly Flavor to Intel",
45-
"text": "-gdb-set disassembly-flavor intel",
46-
"ignoreFailures": true
47-
}
48-
]
49-
},
50-
],
3+
{
4+
"name": "Examples/Tests (Chrome)",
5+
"type": "chrome",
6+
"request": "launch",
7+
"runtimeArgs": [
8+
"--allow-file-access-from-files",
9+
"--autoplay-policy=no-user-gesture-required",
10+
"--enable-features=SharedArrayBuffer"
11+
],
12+
"file": "${workspaceFolder}/examples/index.html",
13+
"cwd": "${workspaceFolder}/examples/"
14+
},
15+
],
5116
"version": "2.0.0"
5217
}

0 commit comments

Comments
 (0)