gn2bp: Delete get_args

This shouldn't be exposed as it doesn't benefit the module in any way. The module can call `get_cmd` to generate a suitable `cmd`.

Test: update_results.sh
Change-Id: I671b176ca748fc2d956d738199f0d7390a29dea9
This commit is contained in:
Mohannad Farrag
2022-12-02 15:50:29 +00:00
parent 60b377099f
commit 584613d745

View File

@@ -730,9 +730,6 @@ class BaseActionSanitizer():
def _update_all_args(self, func): def _update_all_args(self, func):
self.target.args = [func(arg) for arg in self.target.args] self.target.args = [func(arg) for arg in self.target.args]
def get_args(self):
return self.target.args
def get_cmd(self): def get_cmd(self):
arg_string = NEWLINE.join(self.target.args) arg_string = NEWLINE.join(self.target.args)
cmd = '$(location %s) %s' % ( cmd = '$(location %s) %s' % (
@@ -912,7 +909,6 @@ def create_action_module(blueprint, target, type):
sanitizer = get_action_sanitizer(target) sanitizer = get_action_sanitizer(target)
sanitizer.sanitize() sanitizer.sanitize()
target.args = sanitizer.get_args()
module.cmd = sanitizer.get_cmd() module.cmd = sanitizer.get_cmd()
module.out = sanitizer.get_outputs() module.out = sanitizer.get_outputs()
if sanitizer.is_header_generated(): if sanitizer.is_header_generated():