ce9d8e143d
Change-Id: I4e00edd2d1572c3e2c1fcb56824239c166253cbc Reviewed-on: https://skia-review.googlesource.com/c/skia/+/412958 Reviewed-by: Eric Boren <borenet@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Brian Osman <brianosman@google.com>
81 lines
2.0 KiB
Python
81 lines
2.0 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',
|
|
'fm',
|
|
'fm.exe',
|
|
'nanobench.app',
|
|
'get_images_from_skps',
|
|
'get_images_from_skps.exe',
|
|
'nanobench',
|
|
'nanobench.exe',
|
|
'skpbench',
|
|
'skpbench.exe',
|
|
'*.so',
|
|
'*.dll',
|
|
'*.dylib',
|
|
'skia_launcher',
|
|
'skottie_tool',
|
|
'lib/*.so',
|
|
'run_testlab',
|
|
]
|
|
|
|
# TODO(westont): Use this in docker.py, instead of a copy of it.
|
|
def py_to_gn(val):
|
|
"""Convert val to a string that can be used as GN args."""
|
|
if isinstance(val, bool):
|
|
return 'true' if val else 'false'
|
|
elif isinstance(val, basestring):
|
|
# TODO(dogben): Handle quoting "$\
|
|
return '"%s"' % val
|
|
elif isinstance(val, (list, tuple)):
|
|
return '[%s]' % (','.join(py_to_gn(x) for x in val))
|
|
elif isinstance(val, dict):
|
|
gn = ' '.join(
|
|
'%s=%s' % (k, py_to_gn(v)) for (k, v) in sorted(val.iteritems()))
|
|
return gn
|
|
else: # pragma: nocover
|
|
raise Exception('Converting %s to gn is not implemented.' % type(val))
|
|
|
|
|
|
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)
|