Revert of Remove OneClickSigninHelper since it is no longer used. (patchset #5 id...
[chromium-blink-merge.git] / build / android / pylib / gtest / test_options.py
blob5099ba6024a77f68c98ddf7a4348c3c7d89963f8
1 # Copyright 2013 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.
5 """Defines the GTestOptions named tuple."""
7 import collections
9 GTestOptions = collections.namedtuple('GTestOptions', [
10 'tool',
11 'cleanup_test_files',
12 'gtest_filter',
13 'run_disabled',
14 'test_arguments',
15 'timeout',
16 'isolate_file_path',
17 'suite_name'])