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

Side by Side Diff: build/android/pylib/remote/device/remote_device_environment.py

Issue 1141793003: Update from https://crrev.com/329939 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 7 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
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 """Environment setup and teardown for remote devices.""" 5 """Environment setup and teardown for remote devices."""
6 6
7 import distutils.version 7 import distutils.version
8 import json 8 import json
9 import logging 9 import logging
10 import os 10 import os
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 324
325 @property 325 @property
326 def device_type_id(self): 326 def device_type_id(self):
327 return self._device['device_type_id'] 327 return self._device['device_type_id']
328 328
329 @property 329 @property
330 def network_config(self): 330 def network_config(self):
331 return self._network_config 331 return self._network_config
332 332
333 @property 333 @property
334 def only_output_failures(self):
335 # TODO(jbudorick): Remove this once b/18981674 is fixed.
336 return True
337
338 @property
334 def results_path(self): 339 def results_path(self):
335 return self._results_path 340 return self._results_path
336 341
337 @property 342 @property
338 def runner_package(self): 343 def runner_package(self):
339 return self._runner_package 344 return self._runner_package
340 345
341 @property 346 @property
342 def runner_type(self): 347 def runner_type(self):
343 return self._runner_type 348 return self._runner_type
(...skipping 10 matching lines...) Expand all
354 def trigger(self): 359 def trigger(self):
355 return self._trigger 360 return self._trigger
356 361
357 @property 362 @property
358 def verbose_count(self): 363 def verbose_count(self):
359 return self._verbose_count 364 return self._verbose_count
360 365
361 @property 366 @property
362 def device_type(self): 367 def device_type(self):
363 return self._device_type 368 return self._device_type
OLDNEW
« no previous file with comments | « build/android/pylib/perf/test_runner.py ('k') | build/android/pylib/remote/device/remote_device_gtest_run.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698