diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-08-19 17:44:09 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-08-19 17:44:09 -0400 |
commit | dd1ad91cb40d1f366aab1d8d552fea7155686323 (patch) | |
tree | de29c6d2d9d9111b3d7098edc5836d0c22b7f71d /dom/inputmethod | |
parent | 1b14edc01b2e65f8c93f0719309662b098e7131d (diff) | |
download | uxp-dd1ad91cb40d1f366aab1d8d552fea7155686323.tar.gz |
Follow up to eb28b1f32 - Correct inputmethod build file by putting Keyboard.jsm back in EXTRA_JS_MODULES
JSMs are NOT Components.
Diffstat (limited to 'dom/inputmethod')
-rw-r--r-- | dom/inputmethod/moz.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dom/inputmethod/moz.build b/dom/inputmethod/moz.build index e6d9945655..d0e817ee29 100644 --- a/dom/inputmethod/moz.build +++ b/dom/inputmethod/moz.build @@ -6,10 +6,11 @@ EXTRA_COMPONENTS += [ 'InputMethod.manifest', - 'Keyboard.jsm', 'MozKeyboard.js', ] +EXTRA_JS_MODULES += ['Keyboard.jsm'] + JAR_MANIFESTS += ['jar.mn'] MOCHITEST_CHROME_MANIFESTS += ['mochitest/chrome.ini'] |