File tree Expand file tree Collapse file tree 4 files changed +3
-3
lines changed Expand file tree Collapse file tree 4 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 7
7
# Enable automatic configs based on platform
8
8
common --enable_platform_specific_config
9
9
10
+ # Make globs that don't match anything fail
11
+ common --incompatible_disallow_empty_glob
12
+
10
13
# Needed by gRPC to build on some platforms.
11
14
build --copt -DGRPC_BAZEL_BUILD
12
15
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ package(default_visibility = ["//visibility:public"])
6
6
cc_library (
7
7
name = "logs" ,
8
8
srcs = glob (["**/*.cc" ]),
9
- hdrs = glob (["**/*.h" ]),
10
9
include_prefix = "src/logs" ,
11
10
deps = [
12
11
"//api" ,
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ package(default_visibility = ["//visibility:public"])
6
6
cc_library (
7
7
name = "metrics" ,
8
8
srcs = glob (["**/*.cc" ]),
9
- hdrs = glob (["**/*.h" ]),
10
9
include_prefix = "src/metrics" ,
11
10
deps = [
12
11
"//api" ,
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ package(default_visibility = ["//visibility:public"])
6
6
cc_library (
7
7
name = "resource" ,
8
8
srcs = glob (["**/*.cc" ]),
9
- hdrs = glob (["**/*.h" ]),
10
9
include_prefix = "src/resource" ,
11
10
deps = [
12
11
"//api" ,
You can’t perform that action at this time.
0 commit comments