Size: 3855 bytes.


  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# cs/devtools/BUILD
load("@devtools_requirements//:requirements.bzl", "requirement")
load("@rules_python//python:defs.bzl", "py_binary", "py_library", "py_test")

package(default_visibility = ["//visibility:public"])

py_binary(
    name = "add_acls",
    srcs = ["add_acls.py"],
)

py_binary(
    name = "newfile",
    srcs = ["newfile.py"],
)

py_binary(
    name = "use_usings",
    srcs = ["use_usings.py"],
    main = "use_usings.py",
    python_version = "PY3",
)

py_binary(
    name = "enforce_header_guards",
    srcs = ["enforce_header_guards.py"],
    main = "enforce_header_guards.py",
)

py_library(
    name = "enforce_header_guards_lib",
    srcs = ["enforce_header_guards.py"],
)

py_binary(
    name = "move_cc",
    srcs = ["move_cc.py"],
    main = "move_cc.py",
)

py_binary(
    name = "parse_logs",
    srcs = ["parse_logs.py"],
    main = "parse_logs.py",
    visibility = ["//visibility:public"],
)

py_binary(
    name = "check_visibility",
    srcs = ["check_visibility.py"],
    python_version = "PY3",
    visibility = ["//visibility:public"],
)

py_binary(
    name = "lint_makefile",
    srcs = ["lint_makefile.py"],
    python_version = "PY3",
)

py_binary(
    name = "update_env",
    srcs = ["update_env.py"],  # the script from above
    main = "update_env.py",
)

py_binary(
    name = "gha",
    srcs = ["gha.py"],
    main = "gha.py",
    visibility = ["//visibility:public"],
)

py_binary(
    name = "embed_files",
    srcs = ["embed_files.py"],
    srcs_version = "PY3",
)

py_binary(
    name = "inline_using",
    srcs = ["inline_using.py"],
    main = "inline_using.py",
    python_version = "PY3",
)

py_binary(
    name = "publish_code",
    srcs = ["publish_code.py"],
    main = "publish_code.py",
)

py_binary(
    name = "filenames_in_comments",
    srcs = ["filenames_in_comments.py"],
    visibility = ["//visibility:public"],
)

py_library(
    name = "filenames_in_comments_lib",
    srcs = ["filenames_in_comments.py"],
)

py_binary(
    name = "format_black",
    srcs = ["format_black.py"],
    main = "format_black.py",
    deps = [
        requirement("black"),
    ],
)

py_binary(
    name = "codegen_goldens",
    srcs = ["codegen_goldens.gpt.py"],
    main = "codegen_goldens.gpt.py",
    python_version = "PY3",
)

py_binary(
    name = "test_endpoints",
    srcs = ["test_endpoints.gpt.py"],
    main = "test_endpoints.gpt.py",
    visibility = ["//visibility:public"],
)

py_binary(
    name = "load_generator",
    srcs = ["load_generator.py"],
    main = "load_generator.py",
    python_version = "PY3",
    visibility = ["//visibility:public"],
)

py_binary(
    name = "expand_system",
    srcs = ["expand_system.gpt.py"],
    main = "expand_system.gpt.py",
    python_version = "PY3",
    visibility = ["//visibility:public"],
    deps = [
        requirement("pyyaml"),
    ],
)

py_binary(
    name = "generate_routing",
    srcs = ["generate_routing.gpt.py"],
    main = "generate_routing.gpt.py",
    python_version = "PY3",
    visibility = ["//visibility:public"],
    deps = [
        requirement("pyyaml"),
    ],
)

py_binary(
    name = "test_expand_system",
    srcs = ["test_expand_system.gpt.py"],
    main = "test_expand_system.gpt.py",
    python_version = "PY3",
    visibility = ["//visibility:public"],
    deps = [
        requirement("pyyaml"),
    ],
)

py_binary(
    name = "compute_service_hash",
    srcs = ["compute_service_hash.gpt.py"],
    main = "compute_service_hash.gpt.py",
    python_version = "PY3",
    visibility = ["//visibility:public"],
)

py_test(
    name = "test_expand_system_unit",
    srcs = [
        "expand_system.gpt.py",
        "test_expand_system_unit.gpt.py",
    ],
    main = "test_expand_system_unit.gpt.py",
    python_version = "PY3",
    deps = [
        requirement("pyyaml"),
    ],
)

exports_files(["requirements.txt"])
v0 (commit) © 2025 @p13i.io | Load balancer proxied to: cs-code-viewer-1:8080 in 4ms.