| # Copyright 2026 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/python/host.gni") |
| import("//build/python/python_host_test.gni") |
| import("//build/python/python_library.gni") |
| |
| group("tests") { |
| testonly = true |
| deps = [ ":cli_test($host_toolchain)" ] |
| } |
| |
| if (is_host) { |
| python_library("cli_lib") { |
| library_name = "cli" |
| sources = [ |
| "__init__.py", |
| "cli.py", |
| ] |
| deps = [ |
| "//scripts/debug/zxdb_cli/shared:protocol_lib", |
| "//scripts/lib/fx_cmd", |
| ] |
| } |
| |
| python_host_test("cli_test") { |
| main_source = "tests/test_cli.py" |
| libraries = [ ":cli_lib" ] |
| } |
| } |