Merge pull request #1534 from Kangz/no_static_lib

BUILD.gn: remove the static_library target.
This commit is contained in:
John Kessenich 2018-10-22 08:33:55 -06:00 коммит произвёл GitHub
Родитель 9323fd4d58 5403f380a4
Коммит a08f465d53
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 15 удалений

Просмотреть файл

@ -152,18 +152,3 @@ source_set("glslang_sources") {
"${spirv_tools_dir}:spvtools_opt",
]
}
static_library("glslang_static") {
deps = [
":glslang_sources",
]
# Without this the macOS linker complains that the static library is empty
if (is_mac) {
complete_static_lib = true
}
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ "//build/config/compiler:no_chromium_code" ]
}