-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBUILD.bazel
30 lines (26 loc) · 1008 Bytes
/
BUILD.bazel
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
load("@bazel_gazelle//:def.bzl", "gazelle")
load("@rules_rust//rust:rust.bzl", "rust_analyzer")
# gazelle:prefix github.com/purkhusid/bazel-bootstrap
# gazelle:build_file_name BUILD.bazel
# gazelle:exclude src/typescript
gazelle(name = "gazelle")
alias(
name = "tsconfig.json",
actual = "//src/typescript:tsconfig.json",
visibility = ["//visibility:public"],
)
rust_analyzer(
name = "rust_analyzer",
targets = ["//src/rust/echo:main"],
visibility = ["//visibility:public"],
)
platform(
name = "buildbuddy_platform",
constraint_values = [
"@bazel_tools//platforms:x86_64",
"@bazel_tools//platforms:linux",
"@bazel_tools//tools/cpp:clang",
"@io_bazel_rules_dotnet//dotnet/toolchain:3.1.100",
],
remote_execution_properties = "\n properties {\n name: \"OSFamily\"\n value: \"Linux\"\n }\n properties {\n name: \"container-image\"\n value: \"none\"\n }\n ",
)