Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit fe94fc9

Browse files
authored
adds more tasks to the engine workspace (#55435)
- host_debug_unopt_arm64 - android_debug_unopt_arm64 - ios_debug_unopt_arm64 (missed in previous change) [C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
1 parent b95b979 commit fe94fc9

File tree

2 files changed

+105
-0
lines changed

2 files changed

+105
-0
lines changed

engine.code-workspace

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,32 @@
232232
"kind": "build"
233233
}
234234
},
235+
{
236+
"type": "shell",
237+
"command": "./flutter/bin/et",
238+
"options": {
239+
"cwd": "${workspaceFolder}/.."
240+
},
241+
"problemMatcher": [
242+
"$gcc"
243+
],
244+
"presentation": {
245+
"echo": true,
246+
"reveal": "silent",
247+
"focus": false,
248+
"panel": "shared",
249+
"clear": true
250+
},
251+
"group": {
252+
"kind": "build"
253+
},
254+
"label": "host_debug_unopt_arm64",
255+
"args": [
256+
"build",
257+
"-c",
258+
"host_debug_unopt_arm64"
259+
]
260+
},
235261
{
236262
"type": "shell",
237263
"command": "./flutter/bin/et",
@@ -285,6 +311,68 @@
285311
"host_debug_unopt_arm64",
286312
"//flutter/impeller/golden_tests:impeller_golden_tests"
287313
]
314+
},
315+
{
316+
"type": "shell",
317+
"command": "./flutter/bin/et",
318+
"options": {
319+
"cwd": "${workspaceFolder}/.."
320+
},
321+
"problemMatcher": [
322+
"$gcc"
323+
],
324+
"presentation": {
325+
"echo": true,
326+
"reveal": "silent",
327+
"focus": false,
328+
"panel": "shared",
329+
"clear": true
330+
},
331+
"group": {
332+
"kind": "build"
333+
},
334+
"label": "ios_debug_unopt_arm64",
335+
"args": [
336+
"build",
337+
"-c",
338+
"host_debug_unopt_arm64",
339+
"&&",
340+
"./flutter/bin/et",
341+
"build",
342+
"-c",
343+
"ios_debug_unopt"
344+
]
345+
},
346+
{
347+
"type": "shell",
348+
"command": "./flutter/bin/et",
349+
"options": {
350+
"cwd": "${workspaceFolder}/.."
351+
},
352+
"problemMatcher": [
353+
"$gcc"
354+
],
355+
"presentation": {
356+
"echo": true,
357+
"reveal": "silent",
358+
"focus": false,
359+
"panel": "shared",
360+
"clear": true
361+
},
362+
"group": {
363+
"kind": "build"
364+
},
365+
"label": "android_debug_unopt_arm64",
366+
"args": [
367+
"build",
368+
"-c",
369+
"host_debug_unopt_arm64",
370+
"&&",
371+
"./flutter/bin/et",
372+
"build",
373+
"-c",
374+
"android_debug_unopt_arm64"
375+
]
288376
}
289377
]
290378
},

tools/vscode_workspace/engine-workspace.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,12 @@ tasks:
192192
clear: true
193193
group:
194194
kind: build
195+
- <<: *et-task
196+
label: host_debug_unopt_arm64
197+
args:
198+
- build
199+
- -c
200+
- host_debug_unopt_arm64
195201
- <<: *et-task
196202
label: display_list_unittests_arm64
197203
args:
@@ -217,6 +223,17 @@ tasks:
217223
- build
218224
- -c
219225
- ios_debug_unopt
226+
- <<: *et-task
227+
label: android_debug_unopt_arm64
228+
args:
229+
- build
230+
- -c
231+
- host_debug_unopt_arm64
232+
- "&&"
233+
- *et-cmd
234+
- build
235+
- -c
236+
- android_debug_unopt_arm64
220237
extensions:
221238
recommendations:
222239
# C++ TestMate

0 commit comments

Comments
 (0)