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 """ Defines variables necessary to make lightweight linux perf builds. |
| 6 |
| 7 Declares required files to run manual bisect script on chrome Linux |
| 8 builds in perf. Binary files that should be stripped to reduce zip file |
| 9 size are declared. The file list was gotten from the local chrome |
| 10 executable path in Linux. (This can be retrieved by typing 'chrome://version' |
| 11 in chrome and following the executable path. The list needs to be updated if |
| 12 future chrome versions require additional files. |
| 13 """ |
| 14 |
| 15 CHROME_REQUIRED_FILES = [ |
| 16 'chrome', |
| 17 'chrome_100_percent.pak', |
| 18 'chrome_200_percent.pak', |
| 19 'default_apps', |
| 20 'icudtl.dat', |
| 21 'libwidevinecdm.so', |
| 22 'locales', |
| 23 'nacl_helper', |
| 24 'nacl_helper_bootstrap', |
| 25 'nacl_irt_x86_64.nexe', |
| 26 'natives_blob.bin', |
| 27 'PepperFlash', |
| 28 'product_logo_48.png', |
| 29 'resources.pak', |
| 30 'snapshot_blob.bin', |
| 31 'xdg-mime', |
| 32 'xdg-settings', |
| 33 ] |
| 34 |
| 35 |
| 36 CHROME_STRIP_LIST = [ |
| 37 'chrome', |
| 38 'nacl_helper' |
| 39 ] |
OLD | NEW |