Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions engine.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,32 @@
"kind": "build"
}
},
{
"type": "shell",
"command": "./flutter/bin/et",
"options": {
"cwd": "${workspaceFolder}/.."
},
"problemMatcher": [
"$gcc"
],
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"clear": true
},
"group": {
"kind": "build"
},
"label": "host_debug_unopt_arm64",
"args": [
"build",
"-c",
"host_debug_unopt_arm64"
]
},
{
"type": "shell",
"command": "./flutter/bin/et",
Expand Down Expand Up @@ -285,6 +311,68 @@
"host_debug_unopt_arm64",
"//flutter/impeller/golden_tests:impeller_golden_tests"
]
},
{
"type": "shell",
"command": "./flutter/bin/et",
"options": {
"cwd": "${workspaceFolder}/.."
},
"problemMatcher": [
"$gcc"
],
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"clear": true
},
"group": {
"kind": "build"
},
"label": "ios_debug_unopt_arm64",
"args": [
"build",
"-c",
"host_debug_unopt_arm64",
"&&",
"./flutter/bin/et",
"build",
"-c",
"ios_debug_unopt"
]
},
{
"type": "shell",
"command": "./flutter/bin/et",
"options": {
"cwd": "${workspaceFolder}/.."
},
"problemMatcher": [
"$gcc"
],
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"clear": true
},
"group": {
"kind": "build"
},
"label": "android_debug_unopt_arm64",
"args": [
"build",
"-c",
"host_debug_unopt_arm64",
"&&",
"./flutter/bin/et",
"build",
"-c",
"android_debug_unopt_arm64"
]
}
]
},
Expand Down
17 changes: 17 additions & 0 deletions tools/vscode_workspace/engine-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,12 @@ tasks:
clear: true
group:
kind: build
- <<: *et-task
label: host_debug_unopt_arm64
args:
- build
- -c
- host_debug_unopt_arm64
- <<: *et-task
label: display_list_unittests_arm64
args:
Expand All @@ -217,6 +223,17 @@ tasks:
- build
- -c
- ios_debug_unopt
- <<: *et-task
label: android_debug_unopt_arm64
args:
- build
- -c
- host_debug_unopt_arm64
- "&&"
- *et-cmd
- build
- -c
- android_debug_unopt_arm64
extensions:
recommendations:
# C++ TestMate
Expand Down