Skip to content

Commit bb786e0

Browse files
generatedunixname28267754012808857facebook-github-bot
authored andcommitted
Rename build files from TARGETS to BUCK (group ID: -897782314074436514)
Differential Revision: D76886665 fbshipit-source-id: deb751e3404ea5083297cad9aea8746c9653bcae
1 parent 873637e commit bb786e0

File tree

5 files changed

+76
-0
lines changed

5 files changed

+76
-0
lines changed

watchman/thirdparty/getopt/BUCK

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
load("@fbcode_macros//build_defs:cpp_library.bzl", "cpp_library")
2+
3+
oncall("scm_client_infra")
4+
5+
cpp_library(
6+
name = "getopt",
7+
srcs = ["GetOpt.cpp"],
8+
headers = ["GetOpt.h"],
9+
)

watchman/thirdparty/jansson/BUCK

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
load("@fbcode_macros//build_defs:cpp_library.bzl", "cpp_library")
2+
3+
oncall("scm_client_infra")
4+
5+
cpp_library(
6+
name = "utf",
7+
srcs = ["utf.cpp"],
8+
headers = ["utf.h"],
9+
)
10+
11+
cpp_library(
12+
name = "jansson",
13+
srcs = [
14+
"dump.cpp",
15+
"error.cpp",
16+
"load.cpp",
17+
"strconv.cpp",
18+
"value.cpp",
19+
],
20+
headers = [
21+
"jansson.h",
22+
"jansson_private.h",
23+
],
24+
deps = [
25+
"fbsource//third-party/fmt:fmt",
26+
"//folly:string",
27+
],
28+
exported_deps = [
29+
":utf",
30+
"//watchman:string",
31+
],
32+
)
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
load("@fbcode_macros//build_defs:cpp_library.bzl", "cpp_library")
2+
3+
oncall("scm_client_infra")
4+
5+
cpp_library(
6+
name = "art",
7+
srcs = [],
8+
headers = [
9+
"art.h",
10+
"art-inl.h",
11+
],
12+
)

watchman/thirdparty/wildmatch/BUCK

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
load("@fbcode_macros//build_defs:cpp_library.bzl", "cpp_library")
2+
3+
oncall("scm_client_infra")
4+
5+
cpp_library(
6+
name = "wildmatch",
7+
srcs = ["wildmatch.c"],
8+
headers = ["wildmatch.h"],
9+
)

watchman/winbuild/BUCK

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
load("@fbcode_macros//build_defs:cpp_binary.bzl", "cpp_binary")
2+
3+
oncall("scm_client_infra")
4+
5+
cpp_binary(
6+
name = "susres",
7+
srcs = ["susres.cpp"],
8+
compatible_with = [
9+
"ovr_config//os:windows",
10+
],
11+
deps = [
12+
"fbsource//third-party/fmt:fmt",
13+
],
14+
)

0 commit comments

Comments
 (0)