blob: 13ccb8ccf4d1e0338d05b07169751d09ec6a13ec [file] [log] [blame]
# Copyright 2013 The Flutter 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/fuchsia/sdk.gni")
import("//flutter/tools/fuchsia/dart/dart_library.gni")
config("zircon_ffi_config") {
include_dirs = [ "." ]
}
shared_library("zircon_ffi") {
public_configs = [ ":zircon_ffi_config" ]
sources = [
"clock.cc",
"clock.h",
]
deps = [
"$fuchsia_sdk_root/pkg:zx",
"//third_party/dart/runtime:dart_api",
]
}
dart_library("dart_zircon_ffi") {
package_name = "zircon_ffi"
sources = [ "zircon_ffi.dart" ]
}