2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-12-01 22:16:27 +00:00
rules_foreign_cc/examples/third_party/gn/BUILD.bazel
UebelAndre fc8efbdf7d
Added ninja rule for building Ninja projects (#527)
* Added `ninja` rule for building Ninja projects

* Third party ninja example
2021-03-01 15:46:25 +00:00

17 lines
288 B
Python

exports_files(
[
"BUILD.curl.bazel",
"patch.gen_ninja.sh",
],
visibility = ["//visibility:public"],
)
sh_test(
name = "gn_launch_test",
srcs = ["gn_test.sh"],
data = ["@gn//:gn_bin"],
env = {
"GN": "$(rootpath @gn//:gn_bin)",
},
)