blob: 46641944fd72999fca5f6bfa8d3491758d9f07bb [file] [log] [blame]
# Copyright 2025 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_binary.gni")
if (is_host) {
python_binary("debug") {
main_source = "main.py"
deps = [ "//scripts/lib/package_server" ]
}
install_python_tool("install") {
name = "debug"
binary = ":debug"
}
}