Skip to content
This repository was archived by the owner on Apr 21, 2025. It is now read-only.
Merged
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
6 changes: 4 additions & 2 deletions build/fuchsia/sdk.gni
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ template("fuchsia_fidl_library") {

inputs = [ invoker.meta ]

outputs = [ "$target_gen_dir/$library_name_slashes/cpp/tables.c" ]
# TODO(fxbug.dev/39388): These are the old coding tables generated by fidlc.
# Switch to the fidlgen_hlcpp coding tables.
outputs = [ "$target_gen_dir/$library_name_slashes/cpp/old_tables.c" ]

args = [
"--fidlc-bin",
Expand All @@ -118,7 +120,7 @@ template("fuchsia_fidl_library") {
"--json",
rebase_path("$target_gen_dir/$library_name_json"),
"--output-c-tables",
rebase_path("$target_gen_dir/$library_name_slashes/cpp/tables.c"),
rebase_path("$target_gen_dir/$library_name_slashes/cpp/old_tables.c"),
]

if (fuchsia_target_api_level != -1) {
Expand Down