Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(821)

Unified Diff: gyp/gpu.gyp

Issue 1781013002: Fixes for 32bit win Vulkan build (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/gpu/vk/GrVkGpu.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/gpu.gyp
diff --git a/gyp/gpu.gyp b/gyp/gpu.gyp
index c6202555db4a76b85928445b4c5ea7c843192397..80fc932b8ab2065164a25ab3c023f9b02eb2449b 100644
--- a/gyp/gpu.gyp
+++ b/gyp/gpu.gyp
@@ -250,7 +250,13 @@
],
},
'link_settings': {
- 'library_dirs': [ '<(vulkan_sdk_path)/Bin', ],
+ 'conditions': [
+ [ 'skia_arch_type == "x86"', {
+ 'library_dirs': [ '<(vulkan_sdk_path)/Bin32', ],
+ }, {
+ 'library_dirs': [ '<(vulkan_sdk_path)/Bin', ],
+ }],
+ ]
},
}, {
'variables': {
« no previous file with comments | « no previous file | src/gpu/vk/GrVkGpu.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698