Move GN root into //core/libdeno (#2943)

This commit is contained in:
Christian Moritz 2019-09-12 21:07:21 +02:00 committed by Bert Belder
parent 40a6d83073
commit 9c282d6a0e
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461
31 changed files with 81 additions and 80 deletions

View file

@ -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")