From 70c3065f265650eeb151673a2d1949c248db5b9c Mon Sep 17 00:00:00 2001 From: Geoff Brown Date: Tue, 14 Jan 2020 16:22:00 +0000 Subject: [PATCH] Bug 1606370 - Avoid cross-directory support file error in android mochitest; r=bc Do not include the problematic manifest on Android. We never run Android mochitest-browser-chrome anyway. Bug 1435429 and bug 1557417 used a similar approach. Differential Revision: https://phabricator.services.mozilla.com/D59828 --HG-- extra : moz-landing-system : lando --- devtools/shared/resources/moz.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/devtools/shared/resources/moz.build b/devtools/shared/resources/moz.build index f8d4aa1949c7..418e58cdbef6 100644 --- a/devtools/shared/resources/moz.build +++ b/devtools/shared/resources/moz.build @@ -6,4 +6,5 @@ DevToolsModules( 'target-list.js', ) -BROWSER_CHROME_MANIFESTS += ['tests/browser.ini'] +if CONFIG['MOZ_BUILD_APP'] != 'mobile/android': + BROWSER_CHROME_MANIFESTS += ['tests/browser.ini']