mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-12-01 22:16:27 +00:00
fc8efbdf7d
* Added `ninja` rule for building Ninja projects * Third party ninja example
17 lines
288 B
Python
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)",
|
|
},
|
|
)
|