Skip to content

Commit 6a24c60

Browse files
[build] Fix incorrect output path in ddc's package_kernel_outline template.
Change-Id: I6c2f03c21437c2068c3ca36dbcc7a5bfd7e5f494 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/433860 Commit-Queue: Ryan Macnak <[email protected]> Reviewed-by: Derek Xu <[email protected]>
1 parent 5366aa4 commit 6a24c60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/ddc/BUILD.gn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ template("package_kernel_outline") {
267267
"Need 'package' in $target_name (the name of the package)")
268268

269269
module = invoker.package
270-
output = "$target_gen_dir/${module}_outline"
270+
output = "$target_gen_dir/${module}_outline.dill"
271271
sdk_outline = rebase_path(sdk_outline_dill)
272272

273273
package_config =
@@ -291,7 +291,7 @@ template("package_kernel_outline") {
291291
"--source",
292292
"package:$module/$module.dart",
293293
"--output",
294-
rebase_path("$output.dill"),
294+
rebase_path(output),
295295
]
296296
if (defined(invoker.extra_libraries)) {
297297
foreach(lib, invoker.extra_libraries) {

0 commit comments

Comments
 (0)