blob: b8e89ced2ef4fcdabcde3d892c9a3666748abdc8 [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/test/test_package.gni")
import("//build/testing/environments.gni")
group("bin") {
testonly = true
deps = [
":identity_bin_unittests",
]
}
group("tests") {
testonly = true
data_deps = [
":identity_bin_unittests",
]
}
test_package("identity_bin_unittests") {
deps = [
"account_handler:bin",
"account_manager:bin",
"dev_auth_provider:bin",
"dev_auth_provider_iotid:bin",
"google_auth_provider:google_auth_provider_unittests",
]
tests = [
{
name = "account_handler_bin_test"
environments = basic_envs
},
{
name = "account_manager_bin_test"
environments = basic_envs
},
{
name = "dev_auth_provider_bin_test"
environments = basic_envs
},
{
name = "dev_auth_provider_iotid_bin_test"
environments = basic_envs
},
{
name = "google_auth_provider_unittests"
environments = basic_envs
},
]
}