forked from mirrors/gecko-dev
Bug 1875201 - Fix for black linting in gn_processor.py CLOSED TREE
This commit is contained in:
parent
a7ad3a40ea
commit
1d449d0247
1 changed files with 4 additions and 1 deletions
|
|
@ -563,7 +563,10 @@ def write_mozbuild(
|
|||
except KeyError:
|
||||
pass
|
||||
try:
|
||||
if relsrcdir in write_mozbuild_variables["INCLUDE_SYSTEM_LIBVPX_HANDLING"]:
|
||||
if (
|
||||
relsrcdir
|
||||
in write_mozbuild_variables["INCLUDE_SYSTEM_LIBVPX_HANDLING"]
|
||||
):
|
||||
mb.write('if not CONFIG["MOZ_SYSTEM_LIBVPX"]:\n')
|
||||
mb.write(' LOCAL_INCLUDES += [ "/media/libvpx/libvpx/" ]\n')
|
||||
mb.write(' CXXFLAGS += CONFIG["MOZ_LIBVPX_CFLAGS"]\n')
|
||||
|
|
|
|||
Loading…
Reference in a new issue