diff options
author | Lootyhoof <lootyhoofer@gmail.com> | 2020-06-06 00:37:29 +0100 |
---|---|---|
committer | Lootyhoof <lootyhoofer@gmail.com> | 2020-06-09 13:41:53 +0100 |
commit | d18faf81938c947f1d02feab2c394b8135f88d8f (patch) | |
tree | 17ad9c1ecb14acd726cb8404c3a82e2781e27253 /widget/moz.build | |
parent | fdb918dea124a6efaf0c86f6d5c2ab1b83013e40 (diff) | |
download | UXP-d18faf81938c947f1d02feab2c394b8135f88d8f.tar UXP-d18faf81938c947f1d02feab2c394b8135f88d8f.tar.gz UXP-d18faf81938c947f1d02feab2c394b8135f88d8f.tar.lz UXP-d18faf81938c947f1d02feab2c394b8135f88d8f.tar.xz UXP-d18faf81938c947f1d02feab2c394b8135f88d8f.zip |
Issue MoonchildProductions/UXP#1578 - Add global menubar support for GTK
Diffstat (limited to 'widget/moz.build')
-rw-r--r-- | widget/moz.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/widget/moz.build b/widget/moz.build index 3ca4c9785..3a52805b0 100644 --- a/widget/moz.build +++ b/widget/moz.build @@ -38,10 +38,12 @@ elif toolkit == 'cocoa': 'nsITaskbarProgress.idl', ] EXPORTS += [ - 'nsINativeMenuService.h', 'nsIPrintDialogService.h', ] +if toolkit in ('cocoa', 'gtk2', 'gtk3'): + EXPORTS += ['nsINativeMenuService.h'] + # Don't build the DSO under the 'build' directory as windows does. # # The DSOs get built in the toolkit dir itself. Do this so that |