blob: 1ee3396a7c6bb39ec71c89440611f13730fac41d [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("sdk_ext_config") {
include_dirs = [ "../.." ]
}
group("fuchsia") {
public_deps = [ ":sdk_ext" ]
}
source_set("sdk_ext") {
sources = [
"sdk_ext/fuchsia.cc",
"sdk_ext/fuchsia.h",
]
deps = [
"$fuchsia_sdk_root/pkg:async-cpp",
"../zircon",
"//flutter/fml",
"//flutter/third_party/tonic",
]
public_deps = [ "$fuchsia_sdk_root/pkg:zx" ]
public_configs = [ ":sdk_ext_config" ]
}