Chromium Code Reviews| Index: scripts/slave/recipe_modules/archive/perf_test_files.py |
| diff --git a/scripts/slave/recipe_modules/archive/perf_test_files.py b/scripts/slave/recipe_modules/archive/perf_test_files.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ad2bed5456b9e78b76e4a638be48d850be250719 |
| --- /dev/null |
| +++ b/scripts/slave/recipe_modules/archive/perf_test_files.py |
| @@ -0,0 +1,33 @@ |
| +# Copyright 2015 The Chromium Authors. All rights reserved. |
|
RobertoCN
2016/08/03 20:49:49
nit: 2016
miimnk
2016/08/03 21:37:11
Fixed
|
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +"""Declares required files to run bisect on chrome Linux builds in perf. |
| +Binary files that should be stripped to reduce zip file size are declared. |
| +""" |
| + |
| +CHROME_REQUIRED_FILES = [ |
| + 'locales', |
| + 'default_apps', |
| + 'PepperFlash', |
| + 'chrome', |
| + 'resources.pak', |
| + 'icudtl.dat', |
| + 'libwidevinecdm.so', |
| + 'nacl_irt_x86_64.nexe', |
| + 'nacl_helper', |
| + 'chrome_200_percent.pak', |
| + 'snapshot_blob.bin', |
| + 'chrome_100_percent.pak', |
| + 'natives_blob.bin', |
| + 'xdg-mime', |
| + 'nacl_helper_bootstrap', |
| + 'xdg-settings', |
| + 'product_logo_48.png' |
| +] |
| + |
| + |
| +CHROME_STRIP_LIST = [ |
| + 'chrome', |
| + 'nacl_helper' |
| +] |