Bug 1366607: Include toolkit moz.configure in m-c topdir build. draft
authorTom Prince <mozilla@hocat.ca>
Tue, 17 Oct 2017 13:33:35 -0600
changeset 22861 66380f92f99ac9a0bbdb2f39baf9119066573080
parent 22853 f040eea1c72b03dbe09e63661efc9c683970b6cd
child 22862 92a5aa044f6031647ea9a1ba56e8f932e1c5b3ef
push id119
push userbmo:mozilla@hocat.ca
push dateWed, 18 Oct 2017 17:03:58 +0000
bugs1366607
Bug 1366607: Include toolkit moz.configure in m-c topdir build. MozReview-Commit-ID: 4WoJZTvzy1P
im/moz.configure
mail/moz.configure
suite/moz.configure
--- a/im/moz.configure
+++ b/im/moz.configure
@@ -1,9 +1,22 @@
 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
 # vim: set filetype=python:
 # This Source Code Form is subject to the terms of the Mozilla Public
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 imply_option('MOZ_PLACES', True)
 
-include('../mozilla/toolkit/moz.configure')
+
+@depends(application)
+def is_comm(app):
+    return app[0].startswith('comm/')
+
+
+@depends(is_comm)
+def toolkit_configure(is_comm):
+    if is_comm:
+        return '../../toolkit/moz.configure'
+    else:
+        return '../mozilla/toolkit/moz.configure'
+
+include(toolkit_configure)
--- a/mail/moz.configure
+++ b/mail/moz.configure
@@ -1,9 +1,22 @@
 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
 # vim: set filetype=python:
 # This Source Code Form is subject to the terms of the Mozilla Public
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 imply_option('MOZ_PLACES', True)
 
-include('../mozilla/toolkit/moz.configure')
+
+@depends(application)
+def is_comm(app):
+    return app[0].startswith('comm/')
+
+
+@depends(is_comm)
+def toolkit_configure(is_comm):
+    if is_comm:
+        return '../../toolkit/moz.configure'
+    else:
+        return '../mozilla/toolkit/moz.configure'
+
+include(toolkit_configure)
--- a/suite/moz.configure
+++ b/suite/moz.configure
@@ -3,9 +3,22 @@
 # This Source Code Form is subject to the terms of the Mozilla Public
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 imply_option('MOZ_PLACES', True)
 imply_option('MOZ_SERVICES_SYNC', True)
 imply_option('MOZ_SOCIAL', False)
 
-include('../mozilla/toolkit/moz.configure')
+
+@depends(application)
+def is_comm(app):
+    return app[0].startswith('comm/')
+
+
+@depends(is_comm)
+def toolkit_configure(is_comm):
+    if is_comm:
+        return '../../toolkit/moz.configure'
+    else:
+        return '../mozilla/toolkit/moz.configure'
+
+include(toolkit_configure)