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

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: Merge remote-tracking branch 'refs/remotes/origin/master' into archive 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 """Declares required files to run manual bisect script on chrome Linux
ghost stip (do not use) 2016/08/15 20:12:16 nit: """One sentence docstring ending with a peri
miimnk 2016/08/15 21:41:22 Done.
6 builds in perf. Binary files that should be stripped to reduce zip file
7 size are declared. The file list was gotten from the local chrome
8 executable path in Linux. (This can be retrieved by typing 'chrome://version'
9 in chrome and following the executable path. The list needs to be updated if
10 future chrome versions require additional files."""
11
12 CHROME_REQUIRED_FILES = [
13 'chrome',
14 'chrome_100_percent.pak',
15 'chrome_200_percent.pak',
16 'default_apps',
17 'icudtl.dat',
18 'libwidevinecdm.so',
19 'locales',
20 'nacl_helper',
21 'nacl_helper_bootstrap',
22 'nacl_irt_x86_64.nexe',
23 'natives_blob.bin',
24 'PepperFlash',
25 'product_logo_48.png'
26 'resources.pak',
27 'snapshot_blob.bin',
28 'xdg-mime',
29 'xdg-settings',
30 ]
31
32
33 CHROME_STRIP_LIST = [
34 'chrome',
35 'nacl_helper'
36 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698