diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-03 08:22:52 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-03 08:22:52 -0500 |
commit | 7239cc8c7e9c140be6858c659d942f6d71283531 (patch) | |
tree | a253fdf254e4c0cb87c0fcf69c8b3b5761f31530 /testing | |
parent | 6ff7b85d14eeb64216e7cba5d76beeb2c485045e (diff) | |
download | UXP-7239cc8c7e9c140be6858c659d942f6d71283531.tar UXP-7239cc8c7e9c140be6858c659d942f6d71283531.tar.gz UXP-7239cc8c7e9c140be6858c659d942f6d71283531.tar.lz UXP-7239cc8c7e9c140be6858c659d942f6d71283531.tar.xz UXP-7239cc8c7e9c140be6858c659d942f6d71283531.zip |
Use MOZ_PHOENIX instead of checking for 'browser' in MOZ_BUILD_APP
Diffstat (limited to 'testing')
-rw-r--r-- | testing/gtest/Makefile.in | 2 | ||||
-rw-r--r-- | testing/testsuite-targets.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testing/gtest/Makefile.in b/testing/gtest/Makefile.in index d2978b5b9..2fb29eb47 100644 --- a/testing/gtest/Makefile.in +++ b/testing/gtest/Makefile.in @@ -7,7 +7,7 @@ include $(topsrcdir)/config/rules.mk -ifeq (browser,$(MOZ_BUILD_APP)) +ifdef MOZ_PHOENIX ifdef COMPILE_ENVIRONMENT gtest:: $(MAKE) -C $(DEPTH)/toolkit/library gtestxul diff --git a/testing/testsuite-targets.mk b/testing/testsuite-targets.mk index c16bd9d8d..8b1d7d50d 100644 --- a/testing/testsuite-targets.mk +++ b/testing/testsuite-targets.mk @@ -22,7 +22,7 @@ ifdef MOZ_B2G BUILD_GTEST= endif -ifneq (browser,$(MOZ_BUILD_APP)) +ifndef MOZ_PHOENIX BUILD_GTEST= endif |