Merge pull request #1518 from Kangz/fix_dawn

BUILD.gn: glslang_sources need the public config too
This commit is contained in:
John Kessenich 2018-10-03 12:25:12 -06:00 committed by GitHub
commit ca042a0ffb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,8 @@ config("glslang_public") {
}
source_set("glslang_sources") {
public_configs = [ ":glslang_public" ]
sources = [
"OGLCompilersDLL/InitializeDll.cpp",
"OGLCompilersDLL/InitializeDll.h",
@ -152,8 +154,6 @@ source_set("glslang_sources") {
}
static_library("glslang_static") {
public_configs = [ ":glslang_public" ]
deps = [
":glslang_sources",
]