diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-12 14:27:29 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-13 09:35:20 +0000 |
commit | c30a6232df03e1efbd9f3b226777b07e087a1122 (patch) | |
tree | e992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/tools/vscode | |
parent | 7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff) | |
download | qtwebengine-chromium-85-based.tar.gz |
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/tools/vscode')
-rw-r--r-- | chromium/tools/vscode/launch.json5 | 10 | ||||
-rw-r--r-- | chromium/tools/vscode/tasks.json5 | 6 |
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" |