blob: bbce4e82de8e229cbf91f5ae2a59509342a8e216 [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")
config("zircon_ffi_config") {
include_dirs = [ "." ]
}
shared_library("zircon_ffi") {
public_configs = [ ":zircon_ffi_config" ]
sources = [
"basic_types.cc",
"basic_types.h",
"channel.cc",
"channel.h",
"clock.cc",
"clock.h",
"dart_dl.cc",
"dart_dl.h",
"handle.cc",
"handle.h",
"macros.h",
]
deps = [
"$fuchsia_sdk_root/pkg:zx",
"//flutter/fml",
"//third_party/dart/runtime:dart_api",
]
}