diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-11-30 12:55:21 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-11-30 12:55:21 -0500 |
commit | 7406a31bca0dcbf6a75f1031637594dd5eff633c (patch) | |
tree | 7973f35e3bee3fc59735fe452e97a914085ccd58 /application/palemoon/components/shell/moz.build | |
parent | ac6c6be1ca6f0719db7c7518f620ddde1b733ee0 (diff) | |
download | UXP-7406a31bca0dcbf6a75f1031637594dd5eff633c.tar UXP-7406a31bca0dcbf6a75f1031637594dd5eff633c.tar.gz UXP-7406a31bca0dcbf6a75f1031637594dd5eff633c.tar.lz UXP-7406a31bca0dcbf6a75f1031637594dd5eff633c.tar.xz UXP-7406a31bca0dcbf6a75f1031637594dd5eff633c.zip |
Issue #889 - Clean up the Pale Moon tree - Part 2a: Make moz.build consistent
Diffstat (limited to 'application/palemoon/components/shell/moz.build')
-rw-r--r-- | application/palemoon/components/shell/moz.build | 32 |
1 files changed, 8 insertions, 24 deletions
diff --git a/application/palemoon/components/shell/moz.build b/application/palemoon/components/shell/moz.build index 94ec88571..16bffd7d9 100644 --- a/application/palemoon/components/shell/moz.build +++ b/application/palemoon/components/shell/moz.build @@ -6,37 +6,23 @@ JAR_MANIFESTS += ['jar.mn'] -XPIDL_SOURCES += [ - 'nsIShellService.idl', -] +XPIDL_SOURCES += ['nsIShellService.idl'] if CONFIG['OS_ARCH'] == 'WINNT': - XPIDL_SOURCES += [ - 'nsIWindowsShellService.idl', - ] + XPIDL_SOURCES += ['nsIWindowsShellService.idl'] elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa': - XPIDL_SOURCES += [ - 'nsIMacShellService.idl', - ] + XPIDL_SOURCES += ['nsIMacShellService.idl'] elif 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']: - XPIDL_SOURCES += [ - 'nsIGNOMEShellService.idl', - ] + XPIDL_SOURCES += ['nsIGNOMEShellService.idl'] XPIDL_MODULE = 'shellservice' if CONFIG['OS_ARCH'] == 'WINNT': - SOURCES += [ - 'nsWindowsShellService.cpp', - ] + SOURCES += ['nsWindowsShellService.cpp'] elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa': - SOURCES += [ - 'nsMacShellService.cpp', - ] + SOURCES += ['nsMacShellService.cpp'] elif 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']: - SOURCES += [ - 'nsGNOMEShellService.cpp', - ] + SOURCES += ['nsGNOMEShellService.cpp'] if SOURCES: FINAL_LIBRARY = 'browsercomps' @@ -46,9 +32,7 @@ EXTRA_COMPONENTS += [ 'nsSetDefaultBrowser.manifest', ] -EXTRA_JS_MODULES += [ - 'ShellService.jsm', -] +EXTRA_JS_MODULES += ['ShellService.jsm'] for var in ('MOZ_APP_NAME', 'MOZ_APP_VERSION'): DEFINES[var] = '"%s"' % CONFIG[var] |