blob: 43197845b1dc13bd08a030c1628c4a8f9ba11430 [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/compiled_action.gni")
import("//build/package.gni")
import("//build/rust/rustc_library.gni")
rustc_library("core") {
edition = "2018"
name = "fuchsia_wayland_core"
with_unit_tests = true
deps = [
"//garnet/public/rust/fuchsia-async",
"//garnet/public/rust/fuchsia-trace",
"//garnet/public/rust/fuchsia-zircon",
"//third_party/rust_crates:byteorder",
"//third_party/rust_crates:failure",
"//third_party/rust_crates:futures-preview",
"//third_party/rust_crates:parking_lot",
]
}
group("tests") {
public_deps = [
":core",
]
}