File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
load (
2
2
"@gz//bazel/skylark:build_defs.bzl" ,
3
- "GZ_FEATURES" ,
4
3
"GZ_ROOT" ,
5
4
"GZ_VISIBILITY" ,
6
5
"gz_configure_header" ,
10
9
11
10
package (
12
11
default_visibility = GZ_VISIBILITY ,
13
- features = GZ_FEATURES ,
14
12
)
15
13
16
14
licenses (["notice" ]) # Apache-2.0
@@ -43,8 +41,8 @@ gz_include_header(
43
41
name = "pluginhh_genrule" ,
44
42
out = "core/include/gz/plugin.hh" ,
45
43
hdrs = public_headers_no_gen + [
46
- "core/include/gz/plugin/config.hh" ,
47
44
"core/include/gz/plugin/Export.hh" ,
45
+ "core/include/gz/plugin/config.hh" ,
48
46
],
49
47
)
50
48
@@ -93,6 +91,7 @@ cc_library(
93
91
],
94
92
deps = [
95
93
":core" ,
94
+ ":loader" ,
96
95
],
97
96
)
98
97
@@ -126,11 +125,15 @@ cc_library(
126
125
127
126
cc_test (
128
127
name = "Loader_TEST" ,
129
- srcs = ["loader/src/Loader_TEST.cc" ],
128
+ srcs = [
129
+ "loader/src/Loader_TEST.cc" ,
130
+ ":config" ,
131
+ ],
130
132
defines = [
131
133
'GzDummyPlugins_LIB=\\ "./plugin/test/libGzDummyPlugins.so\\ "' ,
132
134
],
133
135
deps = [
136
+ ":core" ,
134
137
":loader" ,
135
138
GZ_ROOT + "plugin/test:test_plugins" ,
136
139
"@gtest" ,
You can’t perform that action at this time.
0 commit comments