summaryrefslogtreecommitdiff
path: root/chromium/tools/vscode
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/tools/vscode')
-rw-r--r--chromium/tools/vscode/launch.json510
-rw-r--r--chromium/tools/vscode/tasks.json56
2 files changed, 8 insertions, 8 deletions
diff --git a/chromium/tools/vscode/launch.json5 b/chromium/tools/vscode/launch.json5
index 7c749f1fdee..c3a3d83daf0 100644
--- a/chromium/tools/vscode/launch.json5
+++ b/chromium/tools/vscode/launch.json5
@@ -3,7 +3,7 @@
"configurations": [
{
"name": "Chrome Debug",
- "type": "cppdbg",
+ "type": "cppdbg", // "cppdbg" for GDB/LLDB, "cppvsdbg" for Windows Visual Studio debugger
"request": "launch",
"targetArchitecture": "x64",
"program": "${workspaceRoot}/out/Debug/chrome",
@@ -30,7 +30,7 @@
},
{
"name": "Chrome Release",
- "type": "cppdbg",
+ "type": "cppdbg", // "cppdbg" for GDB/LLDB, "cppvsdbg" for Windows Visual Studio debugger
"request": "launch",
"targetArchitecture": "x64",
"program": "${workspaceRoot}/out/Release/chrome",
@@ -43,7 +43,7 @@
},
{
"name": "Custom Test Debug",
- "type": "cppdbg",
+ "type": "cppdbg", // "cppdbg" for GDB/LLDB, "cppvsdbg" for Windows Visual Studio debugger
"request": "launch",
"targetArchitecture": "x64",
"program": "${workspaceRoot}/out/Debug/unit_tests",
@@ -61,7 +61,7 @@
},
{
"name": "Attach Debug",
- "type": "cppdbg",
+ "type": "cppdbg", // "cppdbg" for GDB/LLDB, "cppvsdbg" for Windows Visual Studio debugger
"request": "launch",
"targetArchitecture": "x64",
"program": "${workspaceRoot}/out/Debug/chrome",
@@ -76,7 +76,7 @@
{
// Must be running before launching: out/Debug/bin/chrome_public_apk gdb --ide
"name": "Attach Android",
- "type": "cppdbg",
+ "type": "cppdbg", // "cppdbg" for GDB/LLDB, "cppvsdbg" for Windows Visual Studio debugger
"request": "launch",
"targetArchitecture": "arm",
"program": "/tmp/adb-gdb-support-${env:USER}/app_process",
diff --git a/chromium/tools/vscode/tasks.json5 b/chromium/tools/vscode/tasks.json5
index 8e736cad833..d46895bf450 100644
--- a/chromium/tools/vscode/tasks.json5
+++ b/chromium/tools/vscode/tasks.json5
@@ -5,7 +5,7 @@
{
"label": "1-build_chrome_debug",
"type": "shell",
- "command": "ninja -C out/Debug -j 2000 chrome",
+ "command": "autoninja -C out/Debug chrome",
"group": "test",
"presentation": {
"echo": true,
@@ -91,7 +91,7 @@
{
"label": "3-build_all_debug",
"type": "shell",
- "command": "ninja -C out/Debug -j 2000",
+ "command": "autoninja -C out/Debug",
"presentation": {
"echo": true,
"reveal": "always"
@@ -175,7 +175,7 @@
{
"label": "5-build_test_debug",
"type": "shell",
- "command": "ninja -C out/Debug -j 2000 unit_tests components_unittests browser_tests",
+ "command": "autoninja -C out/Debug unit_tests components_unittests browser_tests",
"presentation": {
"echo": true,
"reveal": "always"