summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/update/common/moz.build
blob: 2c79661c1f71878537c2be8f537cc850ff01c38f (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
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# 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/.

EXPORTS += [
    "commonupdatedir.h",
    "readstrings.h",
    "updatecommon.h",
    "updatedefines.h",
    "updatererrors.h",
]

if CONFIG["OS_ARCH"] == "WINNT":
    EXPORTS += [
        "pathhash.h",
        "uachelper.h",
        "updatehelper.cpp",
        "updatehelper.h",
        "updateutils_win.h",
    ]

    if CONFIG["MOZ_MAINTENANCE_SERVICE"]:
        EXPORTS += [
            "certificatecheck.h",
            "registrycertificates.h",
        ]

Library("updatecommon")

DEFINES["NS_NO_XPCOM"] = True
USE_STATIC_LIBS = True

if CONFIG["OS_ARCH"] == "WINNT":
    # This forces the creation of updatecommon.lib, which the update agent needs
    # in order to link to updatecommon library functions.
    NO_EXPAND_LIBS = True

DisableStlWrapping()

if CONFIG["OS_ARCH"] == "WINNT":
    SOURCES += [
        "pathhash.cpp",
        "uachelper.cpp",
        "updatehelper.cpp",
        "updateutils_win.cpp",
    ]
    OS_LIBS += [
        "advapi32",
        "ole32",
        "rpcrt4",
        "shell32",
    ]
    if CONFIG["MOZ_MAINTENANCE_SERVICE"]:
        SOURCES += [
            "certificatecheck.cpp",
            "registrycertificates.cpp",
        ]
        OS_LIBS += [
            "crypt32",
            "wintrust",
        ]

SOURCES += [
    "/other-licenses/nsis/Contrib/CityHash/cityhash/city.cpp",
    "commonupdatedir.cpp",
    "readstrings.cpp",
    "updatecommon.cpp",
]

LOCAL_INCLUDES += [
    "/other-licenses/nsis/Contrib/CityHash/cityhash",
]

DEFINES["MOZ_APP_BASENAME"] = '"%s"' % CONFIG["MOZ_APP_BASENAME"]