-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBUILD.bazel
More file actions
59 lines (49 loc) · 2.36 KB
/
BUILD.bazel
File metadata and controls
59 lines (49 loc) · 2.36 KB
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
# Copyright 2025 Stack AV Co.
# SPDX-License-Identifier: Apache-2.0
load("@rules_python_gazelle_plugin//manifest:defs.bzl", "gazelle_python_manifest")
# Gazelle directives
# ------------------
# gazelle:prefix github.com/stackav-oss/clockwork
# gazelle:proto file
# gazelle:python_generation_mode file
# gazelle:python_default_visibility NONE
# gazelle:map_kind bzl_library bzl_library @bazel_skylib//:bzl_library.bzl
# gazelle:map_kind cc_binary cc_binary //tools/rules:cc.bzl
# gazelle:map_kind cc_library cc_library //tools/rules:cc.bzl
# gazelle:map_kind cc_test cc_test //tools/rules:cc.bzl
# gazelle:map_kind py_binary py_binary //tools/rules:python.bzl
# gazelle:map_kind py_library py_library //tools/rules:python.bzl
# gazelle:map_kind py_test py_test //tools/rules:python.bzl
# gazelle:map_kind go_binary go_binary @rules_go//go:def.bzl
# gazelle:map_kind go_library go_library @rules_go//go:def.bzl
# gazelle:map_kind go_test go_test @rules_go//go:def.bzl
# gazelle:proto_rule proto_go_library resolve nanopb.proto @com_github_nanopb_nanopb//:nanopb_go_proto
# keep-sorted start
# gazelle:resolve proto nanopb.proto @com_github_nanopb_nanopb//:nanopb_proto
# gazelle:resolve proto proto google/api/annotations.proto @googleapis//google/api:annotations_proto
# gazelle:resolve proto proto google/api/field_behavior.proto @googleapis//google/api:field_behavior_proto
# gazelle:resolve proto proto google/api/httpbody.proto @googleapis//google/api:httpbody_proto
# gazelle:resolve py fltk @fltk
# gazelle:resolve py tckdd @tckdd
# gazelle:resolve py mcap @mcap//:mcap_py
# gazelle:resolve py mypy_boto3_s3 @pyright_requirements//mypy_boto3_s3
# gazelle:resolve py clockwork.dsl.tests.support.pytapmsg //clockwork/dsl/tests/support:pytapmsg
# gazelle:resolve py root_repo_py @root_repo//:root_repo_py
# gazelle:resolve py clockwork.dsl.clockwork_cst //clockwork/dsl:clockwork_cst
# gazelle:resolve py clockwork.dsl //clockwork/dsl:clockwork_cst
# gazelle:resolve py clockwork //clockwork/dsl:clockwork_cst
# keep-sorted end
filegroup(
name = "buildifier_config",
srcs = [
".buildifier.json",
".buildifier_tables.json",
],
visibility = ["//visibility:public"],
)
gazelle_python_manifest(
name = "gazelle_python_manifest",
modules_mapping = "//tools/gazelle:modules_map",
pip_repository_name = "clockwork_pip",
visibility = ["//visibility:public"],
)