diff options
-rw-r--r-- | etc/import/TARGETS.grpc | 7 | ||||
-rw-r--r-- | etc/import/TARGETS.protobuf | 8 |
2 files changed, 13 insertions, 2 deletions
diff --git a/etc/import/TARGETS.grpc b/etc/import/TARGETS.grpc index d3badc3d..c09be953 100644 --- a/etc/import/TARGETS.grpc +++ b/etc/import/TARGETS.grpc @@ -3721,8 +3721,13 @@ , "PKG_CONFIG_ARGS" ] } +, "grpc_cpp_plugin (no debug)": + { "type": "configure" + , "target": "grpc_cpp_plugin" + , "config": {"type": "'", "$1": {"DEBUG": null}} + } , "toolchain": { "type": ["@", "rules", "CC", "install-with-deps"] - , "targets": ["grpc_cpp_plugin"] + , "targets": ["grpc_cpp_plugin (no debug)"] } } diff --git a/etc/import/TARGETS.protobuf b/etc/import/TARGETS.protobuf index 76466ebc..9875d8fd 100644 --- a/etc/import/TARGETS.protobuf +++ b/etc/import/TARGETS.protobuf @@ -91,9 +91,15 @@ } , "installed protoc": {"type": ["@", "rules", "CC", "install-with-deps"], "targets": ["protoc"]} +, "installed protoc (no debug)": + { "type": "configure" + , "target": "installed protoc" + , "config": {"type": "'", "$1": {"DEBUG": null}} + } , "toolchain_headers": {"type": "install", "deps": ["libprotobuf"]} , "toolchain": { "type": "install" - , "dirs": [["installed protoc", "."], ["toolchain_headers", "include"]] + , "dirs": + [["installed protoc (no debug)", "."], ["toolchain_headers", "include"]] } } |