Brian Silverman | 8dd8a05 | 2018-09-02 17:08:31 -0700 | [diff] [blame] | 1 | sh_binary( |
| 2 | name = "quiet_success", |
| 3 | srcs = ["quiet_success.sh"], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 4 | target_compatible_with = ["@platforms//os:linux"], |
Brian Silverman | 8dd8a05 | 2018-09-02 17:08:31 -0700 | [diff] [blame] | 5 | visibility = ["//visibility:public"], |
| 6 | ) |
Austin Schuh | 3a2f4a4 | 2020-09-16 14:10:39 -0700 | [diff] [blame] | 7 | |
| 8 | py_binary( |
| 9 | name = "jinja2_generator", |
| 10 | srcs = ["jinja2_generator.py"], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 11 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | 3a2f4a4 | 2020-09-16 14:10:39 -0700 | [diff] [blame] | 12 | visibility = ["//visibility:public"], |
Philipp Schrader | ebb658f | 2022-09-17 17:31:09 -0700 | [diff] [blame] | 13 | deps = ["@pip//jinja2"], |
Austin Schuh | 3a2f4a4 | 2020-09-16 14:10:39 -0700 | [diff] [blame] | 14 | ) |
Philipp Schrader | d0e33a4 | 2022-01-22 21:55:15 -0800 | [diff] [blame] | 15 | |
| 16 | py_binary( |
| 17 | name = "apache_runner", |
| 18 | srcs = ["apache_runner.py"], |
| 19 | data = [ |
| 20 | "apache_template.conf", |
| 21 | "@apache2//:all_files", |
| 22 | ], |
| 23 | target_compatible_with = ["@platforms//os:linux"], |
| 24 | visibility = ["//visibility:public"], |
Philipp Schrader | ebb658f | 2022-09-17 17:31:09 -0700 | [diff] [blame] | 25 | deps = ["@pip//jinja2"], |
Philipp Schrader | d0e33a4 | 2022-01-22 21:55:15 -0800 | [diff] [blame] | 26 | ) |