1# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2# vim: set filetype=python:
3# This Source Code Form is subject to the terms of the Mozilla Public
4# License, v. 2.0. If a copy of the MPL was not distributed with this
5# file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7with Files("**"):
8    BUG_COMPONENT = ("GeckoView", "General")
9
10EXPORTS.mozilla.jni += [
11    "Accessors.h",
12    "Conversions.h",
13    "GeckoBundleUtils.h",
14    "GeckoResultUtils.h",
15    "Natives.h",
16    "Refs.h",
17    "TypeAdapter.h",
18    "Types.h",
19    "Utils.h",
20]
21
22UNIFIED_SOURCES += [
23    "Conversions.cpp",
24    "Utils.cpp",
25]
26
27include("/ipc/chromium/chromium-config.mozbuild")
28
29FINAL_LIBRARY = "xul"
30
31LOCAL_INCLUDES += [
32    "/widget",
33    "/widget/android",
34]
35