1# vim: set filetype=python:
2# This Source Code Form is subject to the terms of the Mozilla Public
3# License, v. 2.0. If a copy of the MPL was not distributed with this
4# file, You can obtain one at http://mozilla.org/MPL/2.0/.
5
6DIRS += [
7    "base",
8    "import-export",
9    "itip",
10    "libical",
11    "locales",
12    "providers",
13]
14
15TEST_DIRS += ["test"]
16
17FINAL_TARGET_FILES.res += [
18    "timezones/zones.json",
19]
20
21with Files("**"):
22    BUG_COMPONENT = ("Calendar", "General")
23
24with Files("**/moz.build"):
25    BUG_COMPONENT = ("Calendar", "Build Config")
26    FINAL = True
27
28with Files("**/*.mk"):
29    BUG_COMPONENT = ("Calendar", "Build Config")
30    FINAL = True
31
32with Files("**/*manifest"):
33    BUG_COMPONENT = ("Calendar", "Build Config")
34    FINAL = True
35
36with Files("**/Makefile.in"):
37    BUG_COMPONENT = ("Calendar", "Build Config")
38    FINAL = True
39