Skip to content

Commit

Permalink
Change fidl tables from cpp to c.
Browse files Browse the repository at this point in the history
This fixes a build error that resulted from FIDL changes that are in the SDK.

Change-Id: I87a7632aac843903229e2c081d1426a31c8f8552
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/267731
Reviewed-by: Brian Salomon <[email protected]>
Commit-Queue: Mike Klein <[email protected]>
  • Loading branch information
rosasco-wk authored and Skia Commit-Bot committed Jan 30, 2020
1 parent 314524e commit b80b2fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/fuchsia/sdk.gni
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ template("_fuchsia_fidl_library") {

outputs = [
"$target_gen_dir/fuchsia/$library_name_slashes/c/fidl.h",
"$target_gen_dir/fuchsia/$library_name_slashes/c/tables.c",
"$target_gen_dir/fuchsia/$library_name_slashes/cpp/fidl.h",
"$target_gen_dir/fuchsia/$library_name_slashes/cpp/fidl.cc",
"$target_gen_dir/fuchsia/$library_name_slashes/cpp/tables.cc",
]

args = [
Expand All @@ -122,7 +122,7 @@ template("_fuchsia_fidl_library") {
rebase_path("$target_gen_dir/fuchsia/$library_name_slashes/c/fidl.h"),
"--output-c-tables",
rebase_path(
"$target_gen_dir/fuchsia/$library_name_slashes/cpp/tables.cc"),
"$target_gen_dir/fuchsia/$library_name_slashes/c/tables.c"),
]
}

Expand Down

0 comments on commit b80b2fe

Please sign in to comment.