Skip to content

Commit

Permalink
Restore
Browse files Browse the repository at this point in the history
  • Loading branch information
raul-marquez-csa committed Jan 19, 2024
1 parent ff39c75 commit 980ae48
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/build/builders/gn.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ def GnBuildArgs(self):
If used, returns a list of arguments.
"""

return None

def GnBuildEnv(self):
Expand Down Expand Up @@ -68,7 +67,7 @@ def generate(self):
if self.options.pregen_dir:
extra_args.append('chip_code_pre_generated_directory="%s"' % self.options.pregen_dir)

extra_args.extend(self.GnBuildArgs() || [])
extra_args.extend(self.GnBuildArgs() or [])
if extra_args:
cmd += ['--args=%s' % ' '.join(extra_args)]

Expand Down

0 comments on commit 980ae48

Please sign in to comment.