blob: db031a7aa3630711eb2ba2bd27b21e55cd4b5cf8 [file] [log] [blame]
# Copyright 2023 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/host.gni")
import("//build/python/python_host_test.gni")
import("//build/python/python_library.gni")
group("tests") {
testonly = true
deps = [ ":lib_test($host_toolchain)" ]
}
if (is_host) {
python_library("async_utils") {
sources = [
"__init__.py",
"command.py",
"signals.py",
]
}
python_host_test("lib_test") {
main_source = "tests/async_utils_test.py"
main_callable = "unittest.main"
extra_args = [ "-v" ]
libraries = [ ":async_utils" ]
}
}