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

Side by Side Diff: scripts/slave/recipe_modules/archive/perf_test_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: Archive Linux perf builds for manual bisect Created 4 years, 5 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 2015 The Chromium Authors. All rights reserved.
RobertoCN 2016/08/03 20:49:49 nit: 2016
miimnk 2016/08/03 21:37:11 Fixed
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 bisect on chrome Linux builds in perf.
6 Binary files that should be stripped to reduce zip file size are declared.
7 """
8
9 CHROME_REQUIRED_FILES = [
10 'locales',
11 'default_apps',
12 'PepperFlash',
13 'chrome',
14 'resources.pak',
15 'icudtl.dat',
16 'libwidevinecdm.so',
17 'nacl_irt_x86_64.nexe',
18 'nacl_helper',
19 'chrome_200_percent.pak',
20 'snapshot_blob.bin',
21 'chrome_100_percent.pak',
22 'natives_blob.bin',
23 'xdg-mime',
24 'nacl_helper_bootstrap',
25 'xdg-settings',
26 'product_logo_48.png'
27 ]
28
29
30 CHROME_STRIP_LIST = [
31 'chrome',
32 'nacl_helper'
33 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698