xref: /llvm-project/llvm/utils/gn/secondary/llvm/utils/llvm-lit/lit_path_function.gni (revision 91259bf9c68ef72cbc0ce9230665808d10dec416)
1lit_path_function =
2    "# Takes a path that's relative to __file__ and makes it absolute.\n" +
3    "def path(p):\n" +
4    "    return os.path.abspath(os.path.join(__file__, '..', p)) if p else ''"
5