diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2025-04-23 16:43:12 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2025-04-23 16:43:12 +0200 |
commit | 1e7f2ce643f9b2c7e07c7cec7f04bcf13b489668 (patch) | |
tree | 47f42795b8bdf0589c0c38a0345754305a7cc9c7 /lint/RULES | |
parent | 8308f26bb563c711915f40660898e37ef1c92155 (diff) | |
parent | 20b7c7fa1b10a90e0e3aad46579ebe450d6720b9 (diff) | |
download | rules-cc-1e7f2ce643f9b2c7e07c7cec7f04bcf13b489668.tar.gz |
Merge commit '20b7c7fa1b10a90e0e3aad46579ebe450d6720b9' into HEAD
Diffstat (limited to 'lint/RULES')
-rw-r--r-- | lint/RULES | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -58,10 +58,13 @@ , " by the field \"config\", and" , "- OUT pointing to a directory to which files with the lint result" , " can be written." - , "- META pointing to a json file contaning" + , "- META pointing to a json file containing" , " - at key \"direct deps artifact names\" a list of all input" , " artifacts that come from the target itself or are runfiles of a" , " direct dependency." + , " - at key \"extra outs\" a list of extra output artifacts that the" + , " command might produce, such as DWARF objects if debug fission is" + , " enabled." , "- TMPDIR pointing to a directory location that can be used to" , " create additional temporary files." , "It is supposed to indicate by the exit code whether the file to lint" @@ -163,6 +166,12 @@ , "provider": "direct deps artifact names" } ] + , [ "extra outs" + , { "type": "DEP_PROVIDES" + , "dep": {"type": "var", "name": "_"} + , "provider": "extra outs" + } + ] ] , "body": { "type": "TREE" @@ -189,7 +198,8 @@ { "type": "json_encode" , "$1": { "type": "env" - , "vars": ["direct deps artifact names"] + , "vars": + ["direct deps artifact names", "extra outs"] } } } |