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

Side by Side Diff: infra/bots/recipe_modules/skia/vulkan_flavor.py

Issue 2188543002: Add Vulkan runtime dll (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Fix presubmit Created 4 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import default_flavor
6
7 """Vulkan flavor utils, used for building Skia with Vulkan."""
8
9 class VulkanFlavorUtils(default_flavor.DefaultFlavorUtils):
10 def copy_extra_build_products(self, swarming_out_dir):
borenet 2016/07/27 18:39:28 I recommend doing this in default_flavor, since ev
kjlubick 2016/07/27 18:51:27 Done.
11 if "Win" in self._skia_api.builder_name:
12 # This copies vulkan-1.dll that has been bundled into win_vulkan_sdk
13 # since version 2 See skia/api BUILD_PRODUCTS_ISOLATE_WHITELIST
14 self._skia_api.copy_build_products(
15 self._skia_api.m.path['slave_build'].join('win_vulkan_sdk'),
16 swarming_out_dir)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698