Created
July 26, 2025 03:41
-
-
Save ilsubyeega/fc9c1097127ddd90f0b02c332829eb2a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "(gdb) Launch", | |
| "type": "cppdbg", | |
| "request": "launch", | |
| "program": "/home/sob/Downloads/d/Debug/brave", | |
| "args": ["--incognito", "--ozone-platform=wayland", "--enable-wayland-ime", "--wayland-text-input-version=3"], | |
| "stopAtEntry": true, | |
| "cwd": "${fileDirname}", | |
| "environment": [ | |
| { | |
| "name": "CHROMIUM_GDBINIT_SOURCED", | |
| "value": "1" | |
| } | |
| ], | |
| "externalConsole": false, | |
| "MIMode": "gdb", | |
| "setupCommands": [ | |
| { | |
| "description": "maint", | |
| "text": "maint set worker-threads unlimited", | |
| "ignoreFailures": false | |
| }, | |
| { | |
| "description": "set dir", | |
| "text": "dir /home/sob/projects/brave/brave-browser/src/out/Component", | |
| "ignoreFailures": false | |
| } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment