summaryrefslogtreecommitdiff
path: root/modules/moz.build
blob: 2a1bca274cca05308483df5b1c55daa4c3139a2e (plain)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# 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/.

SPHINX_TREES['toolkit_modules'] = 'docs'

DIRS += ['subprocess']

if CONFIG['MOZ_UPDATER']:
  # NOTE: The signing related bits of libmar depend on nss
  DIRS += ['/modules/libmar']

for var in ('MOZ_APP_NAME',
            'MOZ_APP_VERSION',
            'MOZ_APP_VERSION_DISPLAY',
            'MOZ_MACBUNDLE_NAME',
            'MOZ_WIDGET_TOOLKIT',
            'MOZ_PKG_SPECIAL',
            'DLL_PREFIX',
            'DLL_SUFFIX',
            'DEBUG_JS_MODULES'):
  DEFINES[var] = CONFIG[var]

for var in ('MOZ_TOOLKIT_SEARCH', 'MOZ_UPDATER', 'MOZ_SWITCHBOARD'):
  if CONFIG[var]:
    DEFINES[var] = True

if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk2', 'gtk3'):
  DEFINES['MENUBAR_CAN_AUTOHIDE'] = 1

if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk2', 'gtk3'):
  DEFINES['HAVE_SHELL_SERVICE'] = 1

DEFINES['TOPOBJDIR'] = TOPOBJDIR

EXTRA_JS_MODULES += [
  'AsyncPrefs.jsm',
  'Battery.jsm',
  'BinarySearch.jsm',
  'BrowserUtils.jsm',
  'CanonicalJSON.jsm',
  'CertUtils.jsm',
  'CharsetMenu.jsm',
  'ClientID.jsm',
  'Color.jsm',
  'Console.jsm',
  'DateTimePickerHelper.jsm',
  'debug.js',
  'DeferredTask.jsm',
  'Deprecated.jsm',
  'ExtensionStorage.jsm',
  'FileUtils.jsm',
  'Finder.jsm',
  'FinderHighlighter.jsm',
  'FinderIterator.jsm',
  'ForgetAboutSite.jsm',
  'FormLikeFactory.jsm',
  'Geometry.jsm',
  'Http.jsm',
  'InlineSpellChecker.jsm',
  'InlineSpellCheckerContent.jsm',
  'Integration.jsm',
  'JSONFile.jsm',
  'LoadContextInfo.jsm',
  'Locale.jsm',
  'Log.jsm',
  'Memory.jsm',
  'NewTabUtils.jsm',
  'NLP.jsm',
  'ObjectUtils.jsm',
  'PageMenu.jsm',
  'PageMetadata.jsm',
  'PermissionsUtils.jsm',
  'PopupNotifications.jsm',
  'Preferences.jsm',
  'PrivateBrowsingUtils.jsm',
  'ProfileAge.jsm',
  'Promise-backend.js',
  'Promise.jsm',
  'PromiseMessage.jsm',
  'PromiseUtils.jsm',
  'PropertyListUtils.jsm',
  'RemoteController.jsm',
  'RemoteFinder.jsm',
  'RemotePageManager.jsm',
  'RemoteSecurityUI.jsm',
  'RemoteWebProgress.jsm',
  'ResponsivenessMonitor.jsm',
  'SelectContentHelper.jsm',
  'SelectParentHelper.jsm',
  'ServiceRequest.jsm',
  'SessionRecorder.jsm',
  'sessionstore/FormData.jsm',
  'sessionstore/ScrollPosition.jsm',
  'sessionstore/XPathGenerator.jsm',
  'ShortcutUtils.jsm',
  'Sntp.jsm',
  'SpatialNavigation.jsm',
  'Sqlite.jsm',
  'Task.jsm',
  'Timer.jsm',
  'WebChannel.jsm',
  'webrequest/MatchPattern.jsm',
  'webrequest/WebNavigation.jsm',
  'webrequest/WebNavigationContent.js',
  'webrequest/WebNavigationFrames.jsm',
  'webrequest/WebRequestCommon.jsm',
  'webrequest/WebRequestContent.js',
  'webrequest/WebRequestUpload.jsm',
  'ZipUtils.jsm',
]

if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
    EXTRA_JS_MODULES += ['WindowsRegistry.jsm']

EXTRA_PP_JS_MODULES += [
  'AppConstants.jsm',
  'ResetProfile.jsm',
  'Services.jsm',
  'Troubleshoot.jsm',
  'UpdateUtils.jsm',
  'webrequest/WebRequest.jsm',
  'WindowDraggingUtils.jsm',
]

EXTRA_JS_MODULES.sessionstore += ['sessionstore/Utils.jsm']