blob: 5ddec162c8d06d32ec7f802d61063df82ebc1e5d [file] [log] [blame]
# Copyright 2019 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/package.gni")
import("//build/rust/rustc_library.gni")
import("//build/test/test_package.gni")
import("//build/testing/environments.gni")
rustc_library("omaha_client") {
version = "0.0.1"
edition = "2018"
with_unit_tests = true
deps = [
"//third_party/rust_crates:failure",
"//third_party/rust_crates:futures-preview",
"//third_party/rust_crates:http",
"//third_party/rust_crates:hyper",
"//third_party/rust_crates:itertools",
"//third_party/rust_crates:log",
"//third_party/rust_crates:pretty_assertions",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_derive",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:serde_repr",
]
}
test_package("omaha_client_lib_tests") {
deps = [
":omaha_client_test",
]
tests = [
{
name = "omaha_client_lib_test"
environments = basic_envs
},
]
}