summaryrefslogtreecommitdiff
path: root/tools/util.py
diff options
context:
space:
mode:
authorChristian Moritz <chrmoritz@gmail.com>2019-09-12 21:07:21 +0200
committerBert Belder <bertbelder@gmail.com>2019-09-15 22:12:12 +0200
commit9c282d6a0eea8404653edb5d61adfe429b05ec18 (patch)
treed9b179e30c1f6a462fa469166c3fdc48d042ac00 /tools/util.py
parent40a6d830737d51e70e4b4290182452fb7da6e65e (diff)
Move GN root into //core/libdeno (#2943)
Diffstat (limited to 'tools/util.py')
-rw-r--r--tools/util.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/util.py b/tools/util.py
index 82465f865..93502b06d 100644
--- a/tools/util.py
+++ b/tools/util.py
@@ -20,6 +20,7 @@ else:
executable_suffix = ".exe" if os.name == "nt" else ""
root_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
+libdeno_path = os.path.join(root_path, "core", "libdeno")
tests_path = os.path.join(root_path, "tests")
third_party_path = os.path.join(root_path, "third_party")