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

Side by Side Diff: scripts/slave/recipe_modules/archive/manual_bisect_files.py

Issue 2128613005: Archive Linux perf builds for manual bisect (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: added a missing comma 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 """ Defines variables necessary to make lightweight linux perf builds.
6
7 Declares required files to run manual bisect script on chrome Linux
8 builds in perf. Binary files that should be stripped to reduce zip file
9 size are declared. The file list was gotten from the local chrome
10 executable path in Linux. (This can be retrieved by typing 'chrome://version'
11 in chrome and following the executable path. The list needs to be updated if
12 future chrome versions require additional files.
13 """
14
15 CHROME_REQUIRED_FILES = [
16 'chrome',
17 'chrome_100_percent.pak',
18 'chrome_200_percent.pak',
19 'default_apps',
20 'icudtl.dat',
21 'libwidevinecdm.so',
22 'locales',
23 'nacl_helper',
24 'nacl_helper_bootstrap',
25 'nacl_irt_x86_64.nexe',
26 'natives_blob.bin',
27 'PepperFlash',
28 'product_logo_48.png',
29 'resources.pak',
30 'snapshot_blob.bin',
31 'xdg-mime',
32 'xdg-settings',
33 ]
34
35
36 CHROME_STRIP_LIST = [
37 'chrome',
38 'nacl_helper'
39 ]
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/archive/api.py ('k') | scripts/slave/recipe_modules/chromium_tests/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698