blob: e2fa12c923c0743591e82bb0e2bd194dc138fff2 [file] [log] [blame]
# Copyright 2018 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/dart/dart_library.gni")
dart_library("fidl") {
package_name = "fidl"
sdk_category = "partner"
source_dir = "lib"
sources = [
"fidl.dart",
"src/bits.dart",
"src/codec.dart",
"src/enum.dart",
"src/error.dart",
"src/hash_codes.dart",
"src/interface.dart",
"src/interface_async.dart",
"src/message.dart",
"src/struct.dart",
"src/table.dart",
"src/types.dart",
"src/union.dart",
"src/xunion.dart",
]
deps = [
"//third_party/dart-pkg/pub/meta",
"//topaz/public/dart/zircon",
]
}