35 строки
795 B
Python
35 строки
795 B
Python
# 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/.
|
|
|
|
DIRS += [
|
|
"base",
|
|
"extract",
|
|
"import-export",
|
|
"itip",
|
|
"locales",
|
|
"providers",
|
|
]
|
|
|
|
TEST_DIRS += ["test"]
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = ("Calendar", "General")
|
|
|
|
with Files("**/moz.build"):
|
|
BUG_COMPONENT = ("Calendar", "Build Config")
|
|
FINAL = True
|
|
|
|
with Files("**/*.mk"):
|
|
BUG_COMPONENT = ("Calendar", "Build Config")
|
|
FINAL = True
|
|
|
|
with Files("**/*manifest"):
|
|
BUG_COMPONENT = ("Calendar", "Build Config")
|
|
FINAL = True
|
|
|
|
with Files("**/Makefile.in"):
|
|
BUG_COMPONENT = ("Calendar", "Build Config")
|
|
FINAL = True
|