Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: infra/bots/recipe_modules/flavor/android_flavor.py

Issue 2319843003: Fix strange failures on Android N (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Double brackets Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | platform_tools/android/bin/android_run_skia » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 5
6 # pylint: disable=W0201 6 # pylint: disable=W0201
7 7
8 8
9 import copy 9 import copy
10 import default_flavor 10 import default_flavor
(...skipping 20 matching lines...) Expand all
31 else: 31 else:
32 # Test/Perf bots. 32 # Test/Perf bots.
33 return { 33 return {
34 'AndroidOne': 'arm_v7_neon', 34 'AndroidOne': 'arm_v7_neon',
35 'GalaxyS3': 'arm_v7_neon', 35 'GalaxyS3': 'arm_v7_neon',
36 'GalaxyS4': 'arm_v7_neon', 36 'GalaxyS4': 'arm_v7_neon',
37 'NVIDIA_Shield': 'arm64', 37 'NVIDIA_Shield': 'arm64',
38 'Nexus10': 'arm_v7_neon', 38 'Nexus10': 'arm_v7_neon',
39 'Nexus5': 'arm_v7_neon', 39 'Nexus5': 'arm_v7_neon',
40 'Nexus6': 'arm_v7_neon', 40 'Nexus6': 'arm_v7_neon',
41 'Nexus6p': 'arm_v7_neon', 41 'Nexus6p': 'arm64',
42 'Nexus7': 'arm_v7_neon', 42 'Nexus7': 'arm_v7_neon',
43 'Nexus7v2': 'arm_v7_neon', 43 'Nexus7v2': 'arm_v7_neon',
44 'Nexus9': 'arm64', 44 'Nexus9': 'arm64',
45 'NexusPlayer': 'x86', 45 'NexusPlayer': 'x86',
46 }[builder_cfg['model']] 46 }[builder_cfg['model']]
47 47
48 48
49 class _ADBWrapper(object): 49 class _ADBWrapper(object):
50 """Wrapper for the ADB recipe module. 50 """Wrapper for the ADB recipe module.
51 51
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 infra_step=True).stdout.rstrip() 339 infra_step=True).stdout.rstrip()
340 340
341 def remove_file_on_device(self, path, *args, **kwargs): 341 def remove_file_on_device(self, path, *args, **kwargs):
342 """Delete the given file.""" 342 """Delete the given file."""
343 return self._adb(name='rm %s' % self.m.path.basename(path), 343 return self._adb(name='rm %s' % self.m.path.basename(path),
344 serial=self.serial, 344 serial=self.serial,
345 cmd=['shell', 'rm', '-f', path], 345 cmd=['shell', 'rm', '-f', path],
346 infra_step=True, 346 infra_step=True,
347 *args, 347 *args,
348 **kwargs) 348 **kwargs)
OLDNEW
« no previous file with comments | « no previous file | platform_tools/android/bin/android_run_skia » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698