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

Commit bf92885

Browse files
authored
[fuchsia] Add kernel_compiler target in build_fuchsia script (#10403)
1 parent b41c172 commit bf92885

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/fuchsia/build_fuchsia_artifacts.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
_src_root_dir = os.path.join(_script_dir, '..', '..', '..')
2323
_out_dir = os.path.join(_src_root_dir, 'out')
2424
_bucket_directory = os.path.join(_out_dir, 'fuchsia_bucket')
25+
_fuchsia_base = 'flutter/shell/platform/fuchsia'
2526

2627

2728
def IsLinux():
@@ -164,7 +165,7 @@ def ProcessCIPDPakcage(upload, engine_version):
164165

165166

166167
def GetRunnerTarget(runner_type, product, aot):
167-
base = 'flutter/shell/platform/fuchsia/%s:' % runner_type
168+
base = '%s/%s:' % (_fuchsia_base, runner_type)
168169
if 'dart' in runner_type:
169170
target = 'dart_'
170171
else:
@@ -186,6 +187,7 @@ def GetTargetsToBuild(product=False):
186187
GetRunnerTarget('flutter', product, True),
187188
# The Dart Runner.
188189
GetRunnerTarget('dart_runner', product, False),
190+
'%s/dart:kernel_compiler' % _fuchsia_base,
189191
]
190192
return targets_to_build
191193

0 commit comments

Comments
 (0)