Bug 1619768 - Remove extraneous MOZ_PROFILE_GENERATE defines r=dmajor

MOZ_PROFILE_GENERATE is already defined in mozilla-config.h and doesn't
need to be re-defined by the moz.build files.

Differential Revision: https://phabricator.services.mozilla.com/D65210

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Mike Shal 2020-03-03 21:06:36 +00:00
parent d92c45cab7
commit 810b3916fb
2 changed files with 0 additions and 6 deletions

View File

@ -33,9 +33,6 @@ for var in ('ANDROID_PACKAGE_NAME',
'ANDROID_CPU_ARCH'):
DEFINES[var] = '"%s"' % CONFIG[var]
if CONFIG['MOZ_PROFILE_GENERATE']:
DEFINES['MOZ_PROFILE_GENERATE'] = True
if CONFIG['MOZ_FOLD_LIBS']:
DEFINES['MOZ_FOLD_LIBS'] = True

View File

@ -264,8 +264,5 @@ if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
if CONFIG['MOZ_IPDL_TESTS']:
DEFINES['MOZ_IPDL_TESTS'] = True
if CONFIG['MOZ_PROFILE_GENERATE']:
DEFINES['MOZ_PROFILE_GENERATE'] = True
if CONFIG['ENABLE_TESTS']:
DIRS += ['test/gtest']