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

Side by Side Diff: build/android/pylib/base/output_manager_factory.py

Issue 2933993002: Add local results details pages.
Patch Set: Fix some of Johns comments. Created 3 years, 4 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
(Empty)
1 # Copyright 2017 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 from pylib import constants
6 from pylib.output import local_output_manager
7 from pylib.output import remote_output_manager
8
9
10 def CreateOutputManager(args):
11 if args.local_output:
12 return local_output_manager.LocalOutputManager(
13 output_dir=constants.GetOutDirectory())
14 else:
15 return remote_output_manager.RemoteOutputManager(
16 bucket=args.gs_results_bucket)
OLDNEW
« no previous file with comments | « build/android/pylib/base/output_manager.py ('k') | build/android/pylib/instrumentation/instrumentation_test_instance.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698