Skip to content

Commit

Permalink
Explicitly build SVG module, not listed in top level BUILD.gn.
Browse files Browse the repository at this point in the history
  • Loading branch information
olonho committed Apr 29, 2021
1 parent 20d9306 commit 1fe009c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def main():
gn = 'gn.exe' if 'windows' == system else 'gn'
subprocess.check_call([os.path.join('bin', gn), 'gen', out, '--args=' + ' '.join(args)])
ninja = 'ninja.exe' if 'windows' == system else 'ninja'
subprocess.check_call([os.path.join('..', 'depot_tools', ninja), '-C', out, 'skia', 'modules'])
subprocess.check_call([os.path.join('..', 'depot_tools', ninja), '-C', out, 'skia', 'modules', 'modules/svg'])

return 0

Expand Down

0 comments on commit 1fe009c

Please sign in to comment.