]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/python/icutools/databuilder/renderers/__init__.py
ICU-66108.tar.gz
[apple/icu.git] / icuSources / python / icutools / databuilder / renderers / __init__.py
diff --git a/icuSources/python/icutools/databuilder/renderers/__init__.py b/icuSources/python/icutools/databuilder/renderers/__init__.py
new file mode 100644 (file)
index 0000000..7c402c2
--- /dev/null
@@ -0,0 +1,10 @@
+# Copyright (C) 2018 and later: Unicode, Inc. and others.
+# License & terms of use: http://www.unicode.org/copyright.html
+
+from collections import namedtuple
+
+MakeRule = namedtuple("MakeRule", ["name", "dep_literals", "dep_files", "output_file", "cmds"])
+
+MakeFilesVar = namedtuple("MakeFilesVar", ["name", "files"])
+
+MakeStringVar = namedtuple("MakeStringVar", ["name", "content"])