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