build: fix ffmpeg gn gen (#19127)

* revert #18993

* build: fix ffmpeg GN gen
This commit is contained in:
John Kleinschmidt 2019-07-07 18:30:57 -07:00 committed by Cheng Zhao
parent 106cc6189c
commit e6a7a84834
2 changed files with 1 additions and 1 deletions

View file

@ -4,3 +4,4 @@ is_component_ffmpeg = true
is_official_build = true is_official_build = true
proprietary_codecs = false proprietary_codecs = false
ffmpeg_branding = "Chromium" ffmpeg_branding = "Chromium"
enable_dsyms = false

View file

@ -15,7 +15,6 @@ def main():
for gn_file in sys.argv[1:]: for gn_file in sys.argv[1:]:
subprocess.check_call( subprocess.check_call(
['gn', 'format', gn_file], ['gn', 'format', gn_file],
shell=True,
env=new_env env=new_env
) )