Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 ] | |
| OLD | NEW |