Remove FIDL C bindings usages

The C bindings should not be considered a part of the SDK.
There are no current usages so removing this dependency
should have no effect.

Change-Id: I3d361b7ad17af0e7437e1d20b33bd57256fbba9b
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/291458
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: John Rosasco <rosasco@google.com>
This commit is contained in:
Felix Zhu 2020-05-21 15:58:00 -04:00 committed by Skia Commit-Bot
parent c8653569d9
commit d4380b4cb6
2 changed files with 0 additions and 6 deletions

View File

@ -42,7 +42,6 @@ def main():
parser.add_argument('--json', dest='json', action='store', required=True)
parser.add_argument('--include-base', dest='include_base', action='store', required=True)
parser.add_argument('--output-base-cc', dest='output_base_cc', action='store', required=True)
parser.add_argument('--output-c-header', dest='output_header_c', action='store', required=True)
parser.add_argument('--output-c-tables', dest='output_c_tables', action='store', required=True)
args = parser.parse_args()
@ -54,8 +53,6 @@ def main():
fidlc_command = [
args.fidlc_bin,
'--c-header',
args.output_header_c,
'--tables',
args.output_c_tables,
'--json',

View File

@ -95,7 +95,6 @@ template("_fuchsia_fidl_library") {
inputs = [ invoker.meta ]
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",
@ -116,8 +115,6 @@ template("_fuchsia_fidl_library") {
rebase_path("$target_gen_dir"),
"--output-base-cc",
rebase_path("$target_gen_dir/fuchsia/$library_name_slashes/cpp/fidl"),
"--output-c-header",
rebase_path("$target_gen_dir/fuchsia/$library_name_slashes/c/fidl.h"),
"--output-c-tables",
rebase_path("$target_gen_dir/fuchsia/$library_name_slashes/c/tables.c"),
]