OLD | NEW |
---|---|
(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) | |
OLD | NEW |