summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/action/preprocessor.py
blob: c59a05a90b67cfda5d350a3b2a9be803b350dfc6 (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
# 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/.

import sys

from mozbuild.action.util import log_build_task
from mozbuild.preprocessor import Preprocessor


def generate(output, *args):
    pp = Preprocessor()
    pp.out = output
    pp.handleCommandLine(list(args), True)
    return set(pp.includes)


def main(args):
    pp = Preprocessor()
    pp.handleCommandLine(args, True)


if __name__ == "__main__":
    log_build_task(main, sys.argv[1:])