-
Notifications
You must be signed in to change notification settings - Fork 3
/
moz.build
executable file
·79 lines (64 loc) · 2.19 KB
/
moz.build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
DEFINES['MOZ_APP_VERSION'] = CONFIG['MOZ_APP_VERSION']
DEFINES['MOZ_APP_MAXVERSION'] = CONFIG['MOZ_APP_MAXVERSION']
# Please list each single file which needs to be included in the build.
# Each subdirectory needs its own block, with entries sorted alphabetically.
# Blocks themselves also need to be sorted alphabetically.
# There is no need to include intermediate directories with no files.
FINAL_TARGET_FILES.features['[email protected]'] += [
'background.js',
'button.js',
'config.js',
'content.js',
'manifest.json',
'popup.css',
'popup.html',
'popup.js',
'settings.css',
'settings.html',
'settings.js',
]
FINAL_TARGET_FILES.features['[email protected]']['_locales']['en'] += [
'_locales/en/messages.json',
]
FINAL_TARGET_FILES.features['[email protected]']['_locales']['es'] += [
'_locales/es/messages.json',
]
FINAL_TARGET_FILES.features['[email protected]']['_locales']['fa'] += [
'_locales/fa/messages.json',
]
FINAL_TARGET_FILES.features['[email protected]']['_locales']['fr'] += [
'_locales/fr/messages.json',
]
FINAL_TARGET_FILES.features['[email protected]']['_locales']['my'] += [
'_locales/my/messages.json',
]
FINAL_TARGET_FILES.features['[email protected]']['_locales']['ru'] += [
'_locales/ru/messages.json',
]
FINAL_TARGET_FILES.features['[email protected]']['_locales']['uk'] += [
'_locales/uk/messages.json',
]
FINAL_TARGET_FILES.features['[email protected]']['icons'] += [
'icons/ceno-logo-32.png',
'icons/ceno-logo-48.png'
]
FINAL_TARGET_FILES.features['[email protected]']['localizer'] += [
'localizer/LICENSE.md',
'localizer/Localizer.js',
'localizer/replaceInnerContent.js',
]
FINAL_TARGET_FILES.features['[email protected]']['update-page'] += [
'update-page/index.html',
'update-page/style.css',
]
FINAL_TARGET_FILES.features['[email protected]']['update-page']['img'] += [
'update-page/img/ceno-logo-h.png',
'update-page/img/ceno-update-icon.png',
'update-page/img/ceno-warning-icon.png',
'update-page/img/google-play-badge-2.png',
'update-page/img/paskoocheh-download-badge.png',
]
with Files('**'):
BUG_COMPONENT = ('Censorship circumvention tool', 'Censorship no')