| Rob Tsuk | d2fd719 | 2020-01-15 07:27:14 +0000 | [diff] [blame] | 1 | # Copyright 2018 The Fuchsia Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | import("//build/rust/rustc_library.gni") |
| 6 | |
| 7 | rustc_library("fuchsia-scenic") { |
| 8 | name = "fuchsia_scenic" |
| 9 | version = "0.1.0" |
| 10 | edition = "2018" |
| 11 | |
| 12 | with_unit_tests = true |
| 13 | |
| 14 | deps = [ |
| Rob Tsuk | d2fd719 | 2020-01-15 07:27:14 +0000 | [diff] [blame] | 15 | "//sdk/fidl/fuchsia.images:fuchsia.images-rustc", |
| 16 | "//sdk/fidl/fuchsia.math:fuchsia.math-rustc", |
| 17 | "//sdk/fidl/fuchsia.ui.gfx:fuchsia.ui.gfx-rustc", |
| 18 | "//sdk/fidl/fuchsia.ui.scenic:fuchsia.ui.scenic-rustc", |
| 19 | "//sdk/fidl/fuchsia.ui.views:fuchsia.ui.views-rustc", |
| Mitchell Kember | 1f6c412 | 2020-01-17 01:05:23 +0000 | [diff] [blame^] | 20 | "//src/lib/fidl/rust/fidl", |
| Rob Tsuk | d2fd719 | 2020-01-15 07:27:14 +0000 | [diff] [blame] | 21 | "//src/lib/fuchsia-async", |
| 22 | "//src/lib/mapped-vmo", |
| 23 | "//src/lib/zircon/rust:fuchsia-zircon", |
| 24 | "//third_party/rust_crates:anyhow", |
| 25 | "//third_party/rust_crates:futures", |
| 26 | "//third_party/rust_crates:parking_lot", |
| 27 | "//third_party/rust_crates:thiserror", |
| 28 | ] |
| 29 | } |