Add basic GN configurations

This allows glslang to be build standalone using the gn build system.

To build with gn:

```
gclient sync --gclientfile=standalone.gclient
gn gen out/default
cd out/default
ninja
```
This commit is contained in:
Ben Clayton
2020-10-16 12:47:38 +01:00
parent f4f1d8a352
commit dac38b8fce
7 changed files with 238 additions and 1 deletions

2
.gitignore vendored
View File

@@ -2,6 +2,7 @@
*.a
*.so
*.exe
*.gclient_entries
.vscode/
tags
TAGS
@@ -11,3 +12,4 @@ Test/localResults/
External/googletest
External/spirv-tools
out/
third_party/llvm-build