diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-06-24 14:22:16 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-06-24 14:22:16 +0200 |
commit | 33d508414c10f4b3b2e46782699be4a7ee4d1701 (patch) | |
tree | 02d3219462700247493c88cc5b356186d75ac9e7 | |
parent | d6715e7196bb4f3eefe4d1760cb5a0703849acd0 (diff) | |
parent | 708ada9a0932b628091abe7b5178259fcde5c11b (diff) | |
download | rules-cc-33d508414c10f4b3b2e46782699be4a7ee4d1701.tar.gz |
Merge commit '708ada9a0932b628091abe7b5178259fcde5c11b' into HEAD
-rw-r--r-- | rules/CC/proto/EXPRESSIONS | 1 | ||||
-rw-r--r-- | rules/CC/proto/RULES | 8 | ||||
-rw-r--r-- | rules/CC/test/RULES | 2 |
3 files changed, 6 insertions, 5 deletions
diff --git a/rules/CC/proto/EXPRESSIONS b/rules/CC/proto/EXPRESSIONS index 2286d06..0b44506 100644 --- a/rules/CC/proto/EXPRESSIONS +++ b/rules/CC/proto/EXPRESSIONS @@ -128,6 +128,7 @@ , "ADD_CXXFLAGS" , "AR" , "ENV" + , "DEBUG" , "name" , "stage" , "service support" diff --git a/rules/CC/proto/RULES b/rules/CC/proto/RULES index a191f16..f42c783 100644 --- a/rules/CC/proto/RULES +++ b/rules/CC/proto/RULES @@ -274,14 +274,14 @@ } , "library": { "doc": - [ "A library C++ library, generated from proto files." + [ "A C++ library, generated from proto files." , "" , "This rule usually is used to bind anonymous targets generated from" , "proto libraries." ] , "string_fields": ["name", "stage"] , "target_fields": ["srcs", "deps"] - , "config_vars": ["CXX", "CXXFLAGS", "ADD_CXXFLAGS", "AR", "ENV"] + , "config_vars": ["CXX", "CXXFLAGS", "ADD_CXXFLAGS", "AR", "ENV", "DEBUG"] , "implicit": {"defaults": [["./", "..", "defaults"]], "proto-defaults": ["defaults"]} , "imports": {"protoc-compile": "protoc-compile"} @@ -303,14 +303,14 @@ } , "service library": { "doc": - [ "A service library C++ library, generated from proto files." + [ "A service C++ library, generated from proto files." , "" , "Calls protoc with gRPC plugin to additionally generate gRPC services" , "from proto libraries." ] , "string_fields": ["name", "stage"] , "target_fields": ["srcs", "deps"] - , "config_vars": ["CXX", "CXXFLAGS", "ADD_CXXFLAGS", "AR", "ENV"] + , "config_vars": ["CXX", "CXXFLAGS", "ADD_CXXFLAGS", "AR", "ENV", "DEBUG"] , "implicit": { "defaults": [["./", "..", "defaults"]] , "proto-defaults": ["service defaults"] diff --git a/rules/CC/test/RULES b/rules/CC/test/RULES index c0e8729..b8c400c 100644 --- a/rules/CC/test/RULES +++ b/rules/CC/test/RULES @@ -53,7 +53,7 @@ , "" , "This running of the test is carried out by the implicit dependency" , "on the target \"runner\". By setting this target in the target layer" - , "of this rues repository (instead of letting it default to the" + , "of this rules repository (instead of letting it default to the" , "respective file), the C/C++ test environment can be modified globally." ] , "private-hdrs": |