]> git.saurik.com Git - apple/icu.git/blob - icuSources/python/icutools/databuilder/renderers/__init__.py
ICU-66108.tar.gz
[apple/icu.git] / icuSources / python / icutools / databuilder / renderers / __init__.py
1 # Copyright (C) 2018 and later: Unicode, Inc. and others.
2 # License & terms of use: http://www.unicode.org/copyright.html
3
4 from collections import namedtuple
5
6 MakeRule = namedtuple("MakeRule", ["name", "dep_literals", "dep_files", "output_file", "cmds"])
7
8 MakeFilesVar = namedtuple("MakeFilesVar", ["name", "files"])
9
10 MakeStringVar = namedtuple("MakeStringVar", ["name", "content"])