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

Side by Side Diff: build/android/pylib/host_driven/tests_annotations.py

Issue 11969025: Enable breakpad building by default on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix assuming linux_breakpad->on Created 7 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/common.gypi » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 """Annotations for python-driven tests.""" 5 """Annotations for python-driven tests."""
6 6
7 import os 7 import os
8 8
9 9
10 class AnnotatedFunctions(object): 10 class AnnotatedFunctions(object):
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 66
67 67
68 def MediumTest(function): 68 def MediumTest(function):
69 return AnnotatedFunctions._AddFunction('MediumTest', function) 69 return AnnotatedFunctions._AddFunction('MediumTest', function)
70 70
71 71
72 def LargeTest(function): 72 def LargeTest(function):
73 return AnnotatedFunctions._AddFunction('LargeTest', function) 73 return AnnotatedFunctions._AddFunction('LargeTest', function)
74 74
75 75
76 def EnormousTest(function):
Lei Zhang 2013/01/18 02:41:20 Should this be part of the CL that actually add th
77 return AnnotatedFunctions._AddFunction('EnormousTest', function)
78
79
76 def FlakyTest(function): 80 def FlakyTest(function):
77 return AnnotatedFunctions._AddFunction('FlakyTest', function) 81 return AnnotatedFunctions._AddFunction('FlakyTest', function)
78 82
79 83
80 def DisabledTest(function): 84 def DisabledTest(function):
81 return AnnotatedFunctions._AddFunction('DisabledTest', function) 85 return AnnotatedFunctions._AddFunction('DisabledTest', function)
82 86
83 87
84 def Feature(feature_list): 88 def Feature(feature_list):
85 def _AddFeatures(function): 89 def _AddFeatures(function):
86 for feature in feature_list: 90 for feature in feature_list:
87 AnnotatedFunctions._AddFunction('Feature' + feature, function) 91 AnnotatedFunctions._AddFunction('Feature' + feature, function)
88 return AnnotatedFunctions._AddFunction('Feature', function) 92 return AnnotatedFunctions._AddFunction('Feature', function)
89 return _AddFeatures 93 return _AddFeatures
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698