| Index: tools/bots/bot_utils.py
|
| diff --git a/tools/bots/bot_utils.py b/tools/bots/bot_utils.py
|
| index 1feaf2c136af693a83f85ff4ddff2457d3e39ed9..1e2ce69fb72876e695b86d001566afce5f680860 100644
|
| --- a/tools/bots/bot_utils.py
|
| +++ b/tools/bots/bot_utils.py
|
| @@ -115,6 +115,12 @@ class GCSNamer(object):
|
| return '/'.join([self.sdk_directory(revision),
|
| self.sdk_zipfilename(system, arch, mode)])
|
|
|
| + def unstripped_filepath(self, revision, system, arch):
|
| + return '/'.join([self._variant_directory('unstripped', revision),
|
| + system,
|
| + arch,
|
| + self.unstripped_filename(system)])
|
| +
|
| def dartium_variant_zipfilepath(self, revision, name, system, arch, mode):
|
| return '/'.join([self.dartium_directory(revision),
|
| self.dartium_variant_zipfilename(name, system, arch, mode)])
|
| @@ -186,6 +192,9 @@ class GCSNamer(object):
|
| return 'dartsdk-%s-%s-%s.zip' % (
|
| SYSTEM_RENAMES[system], ARCH_RENAMES[arch], mode)
|
|
|
| + def unstripped_filename(self, system):
|
| + return 'dart.exe' if system.startswith('win') else 'dart'
|
| +
|
| def dartium_variant_zipfilename(self, name, system, arch, mode):
|
| assert name in ['chromedriver', 'dartium', 'content_shell']
|
| assert mode in Mode.ALL_MODES
|
|
|