Skip to content

Commit 09d30d3

Browse files
committed
chore(bazel): add MODULE.bazel files for bzlmod
Signed-off-by: Matthieu MOREL <[email protected]>
1 parent 52820ea commit 09d30d3

File tree

5 files changed

+34
-7
lines changed

5 files changed

+34
-7
lines changed

.bazelrc

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# googletest requires C++14 or above
22
build --cxxopt='-std=c++17'
3+
# Enable Bzlmod for every Bazel command
4+
common --enable_bzlmod

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
# Build directory.
77
build/
88
/bazel-*
9+
MODULE.bazel.lock
910
out/

BUILD.bazel

+8-7
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ config_setting(
4040
cc_library(
4141
name = "config",
4242
hdrs = ["config.h"],
43-
defines = ["HAVE_CONFIG_H"]
43+
defines = ["HAVE_CONFIG_H"],
4444
)
4545

4646
cc_library(
@@ -70,10 +70,11 @@ cc_library(
7070
"snappy-sinksource.h",
7171
],
7272
copts = select({
73-
":windows": [],
74-
"//conditions:default": [
75-
"-Wno-sign-compare",
76-
]}),
73+
":windows": [],
74+
"//conditions:default": [
75+
"-Wno-sign-compare",
76+
],
77+
}),
7778
deps = [
7879
":config",
7980
":snappy-stubs-internal",
@@ -114,7 +115,7 @@ cc_test(
114115
deps = [
115116
":snappy",
116117
":snappy-test",
117-
"//third_party/benchmark:benchmark_main",
118+
"@com_google_benchmark//:benchmark_main",
118119
],
119120
)
120121

@@ -127,7 +128,7 @@ cc_test(
127128
deps = [
128129
":snappy",
129130
":snappy-test",
130-
"//third_party/googletest:gtest_main",
131+
"@com_google_googletest//:gtest_main",
131132
],
132133
)
133134

MODULE.bazel

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
module(
2+
name = "snappy",
3+
version = "1.2.0",
4+
compatibility_level = 1,
5+
)
6+
7+
bazel_dep(
8+
name = "googletest",
9+
version = "1.14.0.bcr.1",
10+
dev_dependency = True,
11+
repo_name = "com_google_googletest",
12+
)
13+
bazel_dep(
14+
name = "google_benchmark",
15+
version = "1.8.3",
16+
dev_dependency = True,
17+
repo_name = "com_google_benchmark",
18+
)
19+
20+
bazel_dep(
21+
name = "platforms",
22+
version = "0.0.9",
23+
)

WORKSPACE.bzlmod

Whitespace-only changes.

0 commit comments

Comments
 (0)