# HG changeset patch # User Ian Neal # Date 1520169865 0 # Sun Mar 04 13:24:25 2018 +0000 # Node ID 6cf4a2d1662a4fd5911f358045bdcfcfaeb47085 # Parent e310bf065648e3a3a5117eeae37835da7c09578c Bug 1428303 - Move SeaMonkey suite/build to components/ r=frg diff --git a/suite/build/Makefile.in b/suite/components/build/Makefile.in rename from suite/build/Makefile.in rename to suite/components/build/Makefile.in diff --git a/suite/build/moz.build b/suite/components/build/moz.build rename from suite/build/moz.build rename to suite/components/build/moz.build --- a/suite/build/moz.build +++ b/suite/components/build/moz.build @@ -10,12 +10,12 @@ EXPORTS += [ SOURCES += [ 'nsSuiteModule.cpp', ] Library('suite') FINAL_LIBRARY = 'xul' LOCAL_INCLUDES += [ - '/suite/components/feeds', - '/suite/components/profile', - '/suite/components/shell', + '../feeds', + '../profile', + '../shell', ] diff --git a/suite/build/nsSuiteCID.h b/suite/components/build/nsSuiteCID.h rename from suite/build/nsSuiteCID.h rename to suite/components/build/nsSuiteCID.h diff --git a/suite/build/nsSuiteModule.cpp b/suite/components/build/nsSuiteModule.cpp rename from suite/build/nsSuiteModule.cpp rename to suite/components/build/nsSuiteModule.cpp diff --git a/suite/components/moz.build b/suite/components/moz.build --- a/suite/components/moz.build +++ b/suite/components/moz.build @@ -3,8 +3,13 @@ # 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/. DIRS += [ 'feeds', 'profile', 'shell', ] + +# build is always last as it adds the local includes from the other components. +DIRS += [ + 'build', +] diff --git a/suite/moz.build b/suite/moz.build --- a/suite/moz.build +++ b/suite/moz.build @@ -25,12 +25,11 @@ DIRS += [ if CONFIG['MAKENSISU']: DIRS += ['installer/windows'] if CONFIG['MOZ_BUNDLED_FONTS']: DIRS += ['/mozilla/browser/fonts'] # app is always last as it packages up the built files on mac. DIRS += [ - 'build', 'app', ]