summaryrefslogtreecommitdiffstats
path: root/gfx/harfbuzz/src/moz.build
blob: dd469aebbdb37a69102f746a527ee4040efc2a16 (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
# -*- 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/.

FILES_PER_UNIFIED_FILE = 100

EXPORTS.harfbuzz += [
    'hb-aat-layout.h',
    'hb-aat.h',
    'hb-blob.h',
    'hb-buffer.h',
    'hb-common.h',
    'hb-deprecated.h',
    'hb-draw.h',
    'hb-face.h',
    'hb-font.h',
    'hb-map.h',
    'hb-ot-color.h',
    'hb-ot-deprecated.h',
    'hb-ot-font.h',
    'hb-ot-layout.h',
    'hb-ot-math.h',
    'hb-ot-meta.h',
    'hb-ot-metrics.h',
    'hb-ot-name.h',
    'hb-ot-shape.h',
    'hb-ot-var.h',
    'hb-ot.h',
    'hb-paint.h',
    'hb-set.h',
    'hb-shape-plan.h',
    'hb-shape.h',
    'hb-style.h',
    'hb-unicode.h',
    'hb-version.h',
    'hb.h',
]

UNIFIED_SOURCES += [
    'hb-aat-layout.cc',
    'hb-aat-map.cc',
    'hb-blob.cc',
    'hb-buffer.cc',
    'hb-common.cc',
    'hb-draw.cc',
    'hb-face-builder.cc',
    'hb-face.cc',
    'hb-font.cc',
    'hb-map.cc',
    'hb-number.cc',
    'hb-ot-cff1-table.cc',
    'hb-ot-cff2-table.cc',
    'hb-ot-color.cc',
    'hb-ot-face.cc',
    'hb-ot-font.cc',
    'hb-ot-layout.cc',
    'hb-ot-map.cc',
    'hb-ot-math.cc',
    'hb-ot-metrics.cc',
    'hb-ot-name.cc',
    'hb-ot-shape-fallback.cc',
    'hb-ot-shape-normalize.cc',
    'hb-ot-shape.cc',
    'hb-ot-shaper-arabic.cc',
    'hb-ot-shaper-default.cc',
    'hb-ot-shaper-hangul.cc',
    'hb-ot-shaper-hebrew.cc',
    'hb-ot-shaper-indic-table.cc',
    'hb-ot-shaper-indic.cc',
    'hb-ot-shaper-khmer.cc',
    'hb-ot-shaper-myanmar.cc',
    'hb-ot-shaper-syllabic.cc',
    'hb-ot-shaper-thai.cc',
    'hb-ot-shaper-use.cc',
    'hb-ot-shaper-vowel-constraints.cc',
    'hb-ot-tag.cc',
    'hb-ot-var.cc',
    'hb-outline.cc',
    'hb-paint-extents.cc',
    'hb-paint.cc',
    'hb-set.cc',
    'hb-shape-plan.cc',
    'hb-shape.cc',
    'hb-shaper.cc',
    'hb-static.cc',
    'hb-style.cc',
    'hb-unicode.cc',
]

if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk':
    EXPORTS.harfbuzz += [
        'hb-glib.h',
    ]
    UNIFIED_SOURCES += [
        'hb-glib.cc',
    ]
    CXXFLAGS += CONFIG['GLIB_CFLAGS']

# We allow warnings for third-party code that can be updated from upstream.
AllowCompilerWarnings()

FINAL_LIBRARY = 'gkmedias'

DEFINES['PACKAGE_VERSION'] = '"moz"'
DEFINES['PACKAGE_BUGREPORT'] = '"http://bugzilla.mozilla.org/"'
DEFINES['HAVE_OT'] = 1
DEFINES['HAVE_ROUND'] = 1
DEFINES['HB_NO_BUFFER_VERIFY'] = True
DEFINES['HB_NO_FALLBACK_SHAPE'] = True
DEFINES['HB_NO_UCD'] = True
DEFINES['HB_NO_UNICODE_FUNCS'] = True

# On Android, we want to use harfbuzz's mmap support for file access,
# so we need to set the appropriate configuration flags as we're not
# running harfbuzz's own configure script.
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
    DEFINES['HAVE_MMAP'] = 1
    DEFINES['HAVE_SYS_MMAN_H'] = 1

if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
    DEFINES['UNICODE'] = True