GN: Add support for Google Games Platform.

This is conditional upon defining a variable 'is_ggp'. The variable is
optional.
This commit is contained in:
Jamie Madill 2019-11-05 07:34:03 -05:00 committed by Mike Schuchardt
parent 52c2645854
commit d42d0747ee

View file

@ -31,6 +31,9 @@ config("vulkan_headers_config") {
if (is_mac) {
defines = [ "VK_USE_PLATFORM_METAL_EXT" ]
}
if (defined(is_ggp) && is_ggp) {
defines = [ "VK_USE_PLATFORM_GGP" ]
}
}
# Vulkan headers only, no compiled sources.