| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # GYP for building gpu | 5 # GYP for building gpu |
| 6 { | 6 { |
| 7 'target_defaults': { | 7 'target_defaults': { |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 ['skia_os != "win"', { | 9 ['skia_os != "win"', { |
| 10 'sources/': [ ['exclude', '_win.(h|cpp)$'], | 10 'sources/': [ ['exclude', '_win.(h|cpp)$'], |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 '../third_party/' # To include files under third_party/vulkan | 243 '../third_party/' # To include files under third_party/vulkan |
| 244 ], | 244 ], |
| 245 }, | 245 }, |
| 246 'conditions' : [ | 246 'conditions' : [ |
| 247 ['skia_os == "win"', { | 247 ['skia_os == "win"', { |
| 248 'all_dependent_settings': { | 248 'all_dependent_settings': { |
| 249 'msvs_settings': { | 249 'msvs_settings': { |
| 250 'VCLinkerTool': { | 250 'VCLinkerTool': { |
| 251 'AdditionalDependencies': [ | 251 'AdditionalDependencies': [ |
| 252 'vulkan-1.lib', | 252 'vulkan-1.lib', |
| 253 'shaderc.lib', | 253 'shaderc_combined.lib' |
| 254 'shaderc_util.lib', | |
| 255 'glslang.lib', | |
| 256 'OSDependent.lib', | |
| 257 'OGLCompiler.lib', | |
| 258 'SPIRV-Tools.lib', | |
| 259 'SPIRV.lib', | |
| 260 ], | 254 ], |
| 261 }, | 255 }, |
| 262 }, | 256 }, |
| 263 }, | 257 }, |
| 264 'link_settings': { | 258 'link_settings': { |
| 265 'configurations': { | 259 'configurations': { |
| 266 'Debug': { | 260 'Debug': { |
| 267 'msvs_settings': { | 261 'msvs_settings': { |
| 268 'VCLinkerTool': { | 262 'VCLinkerTool': { |
| 269 'AdditionalLibraryDirectories': [ | 263 'AdditionalLibraryDirectories': [ |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 ], | 303 ], |
| 310 }, { | 304 }, { |
| 311 'sources!': [ | 305 'sources!': [ |
| 312 '<@(skgpu_vk_sources)', | 306 '<@(skgpu_vk_sources)', |
| 313 ], | 307 ], |
| 314 }], | 308 }], |
| 315 ], | 309 ], |
| 316 }, | 310 }, |
| 317 ], | 311 ], |
| 318 } | 312 } |
| OLD | NEW |