diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-04-07 22:41:34 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-04-07 22:41:34 -0400 |
commit | eb28b1f32bbef71d05402b2e263d7291b8248367 (patch) | |
tree | f741aecd8d4630cff2303309a16f71ca0e1bcc1c /toolkit/components | |
parent | c51c10bf0976ae2994296df9c4c85a7749c57a85 (diff) | |
download | uxp-eb28b1f32bbef71d05402b2e263d7291b8248367.tar.gz |
Take files out of preprocessing that no longer require it
Diffstat (limited to 'toolkit/components')
-rw-r--r-- | toolkit/components/passwordmgr/moz.build | 7 | ||||
-rw-r--r-- | toolkit/components/satchel/moz.build | 6 |
2 files changed, 4 insertions, 9 deletions
diff --git a/toolkit/components/passwordmgr/moz.build b/toolkit/components/passwordmgr/moz.build index 145e2fca4f..79777a981a 100644 --- a/toolkit/components/passwordmgr/moz.build +++ b/toolkit/components/passwordmgr/moz.build @@ -21,12 +21,9 @@ XPIDL_MODULE = 'loginmgr' EXTRA_COMPONENTS += [ 'crypto-SDR.js', 'nsLoginInfo.js', - 'nsLoginManagerPrompter.js', -] - -EXTRA_PP_COMPONENTS += [ 'nsLoginManager.js', - 'passwordmgr.manifest', + 'nsLoginManagerPrompter.js', + 'passwordmgr.manifest' ] EXTRA_JS_MODULES += [ diff --git a/toolkit/components/satchel/moz.build b/toolkit/components/satchel/moz.build index 920f4afff4..f9f727da0b 100644 --- a/toolkit/components/satchel/moz.build +++ b/toolkit/components/satchel/moz.build @@ -20,19 +20,17 @@ LOCAL_INCLUDES += ['../build'] 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'] |