summaryrefslogtreecommitdiff
path: root/components/build/moz.build
blob: 53ad22232101eb607388fb1e96b633a5f85dbc7f (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
# -*- 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/.

include('/ipc/chromium/chromium-config.mozbuild')

EXPORTS += [
  'nsEmbedCID.h',
  'nsRDFCID.h',
  'nsToolkitCompsCID.h'
]

SOURCES += [
  'nsEmbeddingModule.cpp',
  'nsRDFModule.cpp',
  'nsToolkitCompsModule.cpp',
]

LOCAL_INCLUDES += [
  '../alerts/src',
  '../directory/src',
  '../downloads/src',
  '../feeds',
  '../find/src',
  '../jsdownloads/src',
  '../perfmonitoring',
  '../printing/src',
  '../rdf/src',
  '../startup/src',
  '../statusfilter',
  '../typeaheadfind',
  '../windowwatcher/src',
  '/dom/commandhandler',
  '/dom/webbrowserpersist',
  '/system/runtime',
]

if not CONFIG['MOZ_DISABLE_PARENTAL_CONTROLS']:
  LOCAL_INCLUDES += [
    '../parentalcontrols',
  ]

if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
  DEFINES['PROXY_PRINTING'] = 1
  LOCAL_INCLUDES += [
    '../printing/src/win',
  ]

if CONFIG['MOZ_PDF_PRINTING']:
  DEFINES['PROXY_PRINTING'] = 1
  LOCAL_INCLUDES += [
    '../printing/src/unix',
  ]

FINAL_LIBRARY = 'xul'