blob: acddda02c637ff332f488d68bae87604ea094d9d [file] [log] [blame] [edit]
# Copyright 2021 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/python_binary.gni")
python_binary("gn_generate_plugins") {
main_source = "gn_generate_plugins.py"
deps = [
"//third_party/jinja2",
"//third_party/markupsafe",
]
}
python_binary("gn_generate_cmd") {
main_source = "gn_generate_cmd.py"
deps = [
"//third_party/jinja2",
"//third_party/markupsafe",
]
}
if (is_host) {
action("envfile_for_build") {
script = "make_ffx_env.py"
inputs = []
deps = []
args = [ ".ffx.env" ]
outputs = [ "$root_build_dir/.ffx.env" ]
}
}