Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
|
dtu
2016/08/05 21:06:18
Name could be misleading -- these files aren't use
miimnk
2016/08/08 22:41:24
Done.
| |
| 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 = [ | |
|
dtu
2016/08/05 21:06:19
nit: Alphabetize this list.
Also, is there any wa
miimnk
2016/08/08 22:41:25
i) Alphabetized the list.
ii) Yes, it is possible
| |
| 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 |