Chromium Code Reviews| 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 and whitelisted files to run manual bisect | |
| 8 script on perf builds. Binary files that should be | |
| 9 stripped to reduce zip file size are declared. The file list was | |
| 10 gotten from the local chrome executable path. (This can be retrieved by | |
| 11 typing 'chrome://version' in chrome and following the executable path. | |
| 12 The list needs to be updated if future chrome versions require additional files. | |
| 13 """ | |
| 14 CHROME_REQUIRED_FILES = { | |
| 15 'Linux Builder': [ | |
|
dtu
2016/08/30 02:40:22
Prefer to not index by display name. If we could u
miimnk
2016/08/30 21:14:54
Passed in the platform name from chromium_tests/ap
| |
| 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 'Win x64 Builder': [ | |
| 35 'chrome.dll', | |
| 36 'chrome.exe', | |
| 37 'chrome_100_percent.pak', | |
| 38 'chrome_200_percent.pak', | |
| 39 'chrome_child.dll', | |
| 40 'chrome_elf.dll', | |
| 41 'chrome_watcher.dll', | |
| 42 'default_apps', | |
| 43 'd3dcompiler_47.dll', | |
| 44 'icudtl.dat', | |
| 45 'libEGL.dll', | |
| 46 'libGLESv2.dll', | |
| 47 'locales', | |
| 48 'nacl_irt_x86_64.nexe', | |
| 49 'natives_blob.bin', | |
| 50 'PepperFlash', | |
| 51 'resources.pak', | |
| 52 'SecondaryTile.png', | |
| 53 'snapshot_blob.bin' | |
| 54 ], | |
| 55 'Mac Builder': [ | |
| 56 'Google Chrome.app' | |
| 57 ] | |
| 58 } | |
| 59 | |
| 60 CHROME_WHITELIST_FILES = { | |
| 61 'Linux Builder': '', | |
| 62 'Win x64 Builder': '^\d+\.\d+\.\d+\.\d+\.manifest$', | |
| 63 'Mac Builder': '' | |
| 64 } | |
| 65 | |
| 66 CHROME_STRIP_LIST = { | |
| 67 'Linux Builder': [ | |
| 68 'chrome', | |
| 69 'nacl_helper' | |
| 70 ], | |
| 71 'Win x64 Builder': [ | |
| 72 # No stripping symbols from win64 archives. | |
| 73 | |
| 74 ], | |
| 75 'Mac Builder': [ | |
| 76 # No stripping symbols from Mac archives. | |
| 77 ] | |
| 78 } | |
| OLD | NEW |