diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-06 09:11:39 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:38:14 +0200 |
commit | 113a825c1f87263ef7e322c31084d00821edbef3 (patch) | |
tree | d5630ed2f85a339682d3d8dc7ea0b483d0e0491d /toolkit/components/satchel/moz.build | |
parent | 419abfb09f4ab5aac0f4e315c0dd20716e6fe29b (diff) | |
download | UXP-113a825c1f87263ef7e322c31084d00821edbef3.tar UXP-113a825c1f87263ef7e322c31084d00821edbef3.tar.gz UXP-113a825c1f87263ef7e322c31084d00821edbef3.tar.lz UXP-113a825c1f87263ef7e322c31084d00821edbef3.tar.xz UXP-113a825c1f87263ef7e322c31084d00821edbef3.zip |
Issue #65 - Remove AppConstants from toolkit/components/satchel
Diffstat (limited to 'toolkit/components/satchel/moz.build')
-rw-r--r-- | toolkit/components/satchel/moz.build | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/toolkit/components/satchel/moz.build b/toolkit/components/satchel/moz.build index 239f412bc..883ee9f23 100644 --- a/toolkit/components/satchel/moz.build +++ b/toolkit/components/satchel/moz.build @@ -28,17 +28,19 @@ LOCAL_INCLUDES += [ EXTRA_COMPONENTS += [ 'FormHistoryStartup.js', 'nsFormAutoComplete.js', - 'nsFormHistory.js', 'nsInputListAutoComplete.js', 'satchel.manifest', ] +EXTRA_PP_COMPONENTS += ['nsFormHistory.js'] + EXTRA_JS_MODULES += [ 'AutoCompletePopup.jsm', - 'FormHistory.jsm', 'nsFormAutoCompleteResult.jsm', ] +EXTRA_PP_JS_MODULES += ['FormHistory.jsm'] + FINAL_LIBRARY = 'xul' JAR_MANIFESTS += ['jar.mn'] |