Bug 1456500: Disable PGO for Win64 aom to speed up builds. r=froydnj

--HG--
extra : rebase_source : ccab44a70a3147fdfebab11cb874bfde48165f93
This commit is contained in:
David Major 2018-04-24 11:15:13 -04:00
parent b85bff3aac
commit 68fab3379f

View File

@ -23,6 +23,9 @@ if CONFIG['CPU_ARCH'] == 'x86_64':
ASFLAGS += [ '-I%s/media/libaom/config/win/x64/' % TOPSRCDIR ]
LOCAL_INCLUDES += [ '/media/libaom/config/win/x64/' ]
EXPORTS.aom += [ 'config/win/x64/aom_config.h' ]
# This code is not included in our PGO profile, and pointlessly
# PGO-optimizing it slows down our builds a lot.
NO_PGO = True
elif CONFIG['OS_TARGET'] == 'Darwin':
ASFLAGS += [ '-I%s/media/libaom/config/mac/x64/' % TOPSRCDIR ]
LOCAL_INCLUDES += [ '/media/libaom/config/mac/x64/' ]