summaryrefslogtreecommitdiff
path: root/site_scons/site_tools/dagger/graph_consts.py
diff options
context:
space:
mode:
Diffstat (limited to 'site_scons/site_tools/dagger/graph_consts.py')
-rw-r--r--site_scons/site_tools/dagger/graph_consts.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/site_scons/site_tools/dagger/graph_consts.py b/site_scons/site_tools/dagger/graph_consts.py
new file mode 100644
index 00000000000..1d31bcbfa90
--- /dev/null
+++ b/site_scons/site_tools/dagger/graph_consts.py
@@ -0,0 +1,15 @@
+"""Constants for use in graph.py and dagger.py"""
+
+LIB_LIB = 1
+LIB_FIL = 2
+FIL_LIB = 3
+FIL_FIL = 4
+FIL_SYM = 5
+LIB_SYM = 6
+
+NODE_LIB = 1
+NODE_SYM = 2
+NODE_FILE = 3
+
+RELATIONSHIP_TYPES = range(1, 7)
+NODE_TYPES = range(1, 4)