File tree 5 files changed +34
-7
lines changed
5 files changed +34
-7
lines changed Original file line number Diff line number Diff line change 1
1
# googletest requires C++14 or above
2
2
build --cxxopt='-std=c++17'
3
+ # Enable Bzlmod for every Bazel command
4
+ common --enable_bzlmod
Original file line number Diff line number Diff line change 6
6
# Build directory.
7
7
build /
8
8
/bazel- *
9
+ MODULE.bazel.lock
9
10
out /
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ config_setting(
40
40
cc_library (
41
41
name = "config" ,
42
42
hdrs = ["config.h" ],
43
- defines = ["HAVE_CONFIG_H" ]
43
+ defines = ["HAVE_CONFIG_H" ],
44
44
)
45
45
46
46
cc_library (
@@ -70,10 +70,11 @@ cc_library(
70
70
"snappy-sinksource.h" ,
71
71
],
72
72
copts = select ({
73
- ":windows" : [],
74
- "//conditions:default" : [
75
- "-Wno-sign-compare" ,
76
- ]}),
73
+ ":windows" : [],
74
+ "//conditions:default" : [
75
+ "-Wno-sign-compare" ,
76
+ ],
77
+ }),
77
78
deps = [
78
79
":config" ,
79
80
":snappy-stubs-internal" ,
@@ -114,7 +115,7 @@ cc_test(
114
115
deps = [
115
116
":snappy" ,
116
117
":snappy-test" ,
117
- "//third_party/benchmark :benchmark_main" ,
118
+ "@com_google_benchmark// :benchmark_main" ,
118
119
],
119
120
)
120
121
@@ -127,7 +128,7 @@ cc_test(
127
128
deps = [
128
129
":snappy" ,
129
130
":snappy-test" ,
130
- "//third_party/googletest :gtest_main" ,
131
+ "@com_google_googletest// :gtest_main" ,
131
132
],
132
133
)
133
134
Original file line number Diff line number Diff line change
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
+ )
You can’t perform that action at this time.
0 commit comments