Skip to content

Commit 0e335fe

Browse files
Re-sync with internal repository (#16)
Co-authored-by: Facebook Community Bot <[email protected]>
1 parent a99d8f2 commit 0e335fe

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

shim/BUCK

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
"""Copied from prelude since we need to put this file under shim/
2+
"""
3+
4+
load("@prelude//toolchains:cxx.bzl", "system_cxx_toolchain")
5+
load("@prelude//toolchains:genrule.bzl", "system_genrule_toolchain")
6+
load("@prelude//toolchains:python.bzl", "system_python_bootstrap_toolchain", "system_python_toolchain")
7+
load("@prelude//toolchains:rust.bzl", "system_rust_toolchain")
8+
9+
system_cxx_toolchain(
10+
name = "cxx",
11+
visibility = ["PUBLIC"],
12+
)
13+
14+
system_genrule_toolchain(
15+
name = "genrule",
16+
visibility = ["PUBLIC"],
17+
)
18+
19+
system_rust_toolchain(
20+
name = "rust",
21+
default_edition = "2021",
22+
visibility = ["PUBLIC"],
23+
)
24+
25+
system_python_toolchain(
26+
name = "python",
27+
visibility = ["PUBLIC"],
28+
)
29+
30+
system_python_bootstrap_toolchain(
31+
name = "python_bootstrap",
32+
visibility = ["PUBLIC"],
33+
)
File renamed without changes.

0 commit comments

Comments
 (0)