diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
commit | 086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch) | |
tree | a4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /widget/uikit/moz.build | |
parent | Adding debian version 124.0.1-1. (diff) | |
download | firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip |
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'widget/uikit/moz.build')
-rw-r--r-- | widget/uikit/moz.build | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/widget/uikit/moz.build b/widget/uikit/moz.build index 6a3c2db994..88780c9690 100644 --- a/widget/uikit/moz.build +++ b/widget/uikit/moz.build @@ -7,13 +7,20 @@ with Files("**"): BUG_COMPONENT = ("Core", "Widget") +with Files("*TextInput*"): + BUG_COMPONENT = ("Core", "DOM: UI Events & Focus Handling") + SOURCES += [ "GfxInfo.cpp", + "MediaKeysEventSourceFactory.cpp", "nsAppShell.mm", + "nsBidiKeyboard.mm", "nsLookAndFeel.mm", - "nsScreenManager.mm", + "nsNativeThemeUIKit.mm", "nsWidgetFactory.mm", "nsWindow.mm", + "TextInputHandler.mm", + "UIKitUtils.mm", ] include("/ipc/chromium/chromium-config.mozbuild") @@ -22,3 +29,11 @@ FINAL_LIBRARY = "xul" LOCAL_INCLUDES += [ "/widget", ] + +XPCOM_MANIFESTS += [ + "components.conf", +] + +OS_LIBS += [ + "-framework UIKit", +] |