513109e9de
Bug: skia:7399 Change-Id: I0cabc3c04f1b1af3277c35e2d16712d821be2c5b Reviewed-on: https://skia-review.googlesource.com/c/skia/+/246300 Reviewed-by: Ravi Mistry <rmistry@google.com> Commit-Queue: Kevin Lubick <kjlubick@google.com>
66 lines
1.4 KiB
Python
66 lines
1.4 KiB
Python
# Copyright 2018 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
|
|
"""Shared utilities for the build recipe module."""
|
|
|
|
|
|
# This lists the products we want to isolate as outputs for future steps.
|
|
DEFAULT_BUILD_PRODUCTS = [
|
|
'dm',
|
|
'dm.exe',
|
|
'dm.app',
|
|
'nanobench.app',
|
|
'get_images_from_skps',
|
|
'get_images_from_skps.exe',
|
|
'hello-opencl',
|
|
'hello-opencl.exe',
|
|
'nanobench',
|
|
'nanobench.exe',
|
|
'skpbench',
|
|
'skpbench.exe',
|
|
'*.so',
|
|
'*.dll',
|
|
'*.dylib',
|
|
'skia_launcher',
|
|
'skottie_tool',
|
|
'lib/*.so',
|
|
'run_testlab',
|
|
'skqp-universal-debug.apk',
|
|
'whitelist_devices.json',
|
|
]
|
|
|
|
|
|
def copy_listed_files(api, src, dst, product_list):
|
|
"""Copy listed files src to dst."""
|
|
api.python.inline(
|
|
name='copy build products',
|
|
program='''import errno
|
|
import glob
|
|
import os
|
|
import shutil
|
|
import sys
|
|
|
|
src = sys.argv[1]
|
|
dst = sys.argv[2]
|
|
build_products = %s
|
|
|
|
try:
|
|
os.makedirs(dst)
|
|
except OSError as e:
|
|
if e.errno != errno.EEXIST:
|
|
raise
|
|
|
|
for pattern in build_products:
|
|
path = os.path.join(src, pattern)
|
|
for f in glob.glob(path):
|
|
dst_path = os.path.join(dst, os.path.relpath(f, src))
|
|
if not os.path.isdir(os.path.dirname(dst_path)):
|
|
os.makedirs(os.path.dirname(dst_path))
|
|
print 'Copying build product %%s to %%s' %% (f, dst_path)
|
|
shutil.move(f, dst_path)
|
|
''' % str(product_list),
|
|
args=[src, dst],
|
|
infra_step=True)
|