mirror of https://github.com/roytam1/boc-uxp.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
# vim: set filetype=python: |
|
# This Source Code Form is subject to the terms of the Mozilla Public |
|
# License, v. 2.0. If a copy of the MPL was not distributed with this |
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/. |
|
|
|
JAR_MANIFESTS += ['jar.mn'] |
|
|
|
BRANDING_FILES += ['license.txt'] |
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': |
|
BRANDING_FILES += [ |
|
'icons/windows/html-file.ico', |
|
'icons/windows/seamonkey.ico', |
|
'package/windows/branding.nsi', |
|
'package/windows/wizHeader.bmp', |
|
'package/windows/wizHeaderRTL.bmp', |
|
'package/windows/wizWatermark.bmp' |
|
] |
|
|
|
FINAL_TARGET_FILES.chrome.icons.default += [ |
|
'icons/windows/html-file.ico', |
|
'icons/windows/main-window.ico' |
|
] |
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa': |
|
BRANDING_FILES += [ |
|
'package/mac/background.png', |
|
'package/mac/disk.icns', |
|
'package/mac/dsstore' |
|
] |
|
|
|
BRANDING_FILES.icons += [ |
|
'icons/mac/document.icns', |
|
'icons/mac/seamonkey.icns' |
|
] |
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3'): |
|
FINAL_TARGET_FILES.chrome.icons.default += [ |
|
'icons/gtk/default.png' |
|
'icons/gtk/document.png' |
|
'icons/gtk/main-window.png' |
|
'icons/gtk/seamonkey.png' |
|
]
|
|
|