Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 import collections | 5 import collections |
| 6 import datetime | 6 import datetime |
| 7 import math | 7 import math |
| 8 import re | 8 import re |
| 9 | 9 |
| 10 from infra.libs.infra_types import freeze | 10 from infra.libs.infra_types import freeze |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 39 'name': 'Mozilla', | 39 'name': 'Mozilla', |
| 40 'tests': 'mozilla', | 40 'tests': 'mozilla', |
| 41 'gclient_apply_config': ['mozilla_tests'], | 41 'gclient_apply_config': ['mozilla_tests'], |
| 42 }, | 42 }, |
| 43 'optimize_for_size': { | 43 'optimize_for_size': { |
| 44 'name': 'OptimizeForSize', | 44 'name': 'OptimizeForSize', |
| 45 'tests': 'optimize_for_size', | 45 'tests': 'optimize_for_size', |
| 46 'add_flaky_step': True, | 46 'add_flaky_step': True, |
| 47 'test_args': ['--no-variants', '--shell_flags="--optimize-for-size"'], | 47 'test_args': ['--no-variants', '--shell_flags="--optimize-for-size"'], |
| 48 }, | 48 }, |
| 49 'simdjs_small': { | |
| 50 'name': 'simdjs_small', | |
|
Michael Achenbach
2015/05/19 13:48:10
nit: Maybe use camel case for the name as in the o
bradn
2015/05/19 14:31:26
Done.
| |
| 51 'tests': 'simdjs/shell_test_runner', | |
| 52 }, | |
| 53 'simdjs': { | |
| 54 'name': 'simdjs', | |
| 55 'tests': 'simdjs', | |
| 56 }, | |
| 49 'test262': { | 57 'test262': { |
| 50 'name': 'Test262 - no variants', | 58 'name': 'Test262 - no variants', |
| 51 'tests': 'test262', | 59 'tests': 'test262', |
| 52 'test_args': ['--no-variants'], | 60 'test_args': ['--no-variants'], |
| 53 }, | 61 }, |
| 54 'test262_variants': { | 62 'test262_variants': { |
| 55 'name': 'Test262', | 63 'name': 'Test262', |
| 56 'tests': 'test262', | 64 'tests': 'test262', |
| 57 }, | 65 }, |
| 58 'test262_es6': { | 66 'test262_es6': { |
| (...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 887 properties = { | 895 properties = { |
| 888 'revision': self.revision, | 896 'revision': self.revision, |
| 889 'parent_got_revision': self.revision, | 897 'parent_got_revision': self.revision, |
| 890 'parent_got_revision_cp': self.revision_cp, | 898 'parent_got_revision_cp': self.revision_cp, |
| 891 } | 899 } |
| 892 properties.update(**additional_properties) | 900 properties.update(**additional_properties) |
| 893 self.m.trigger(*[{ | 901 self.m.trigger(*[{ |
| 894 'builder_name': builder_name, | 902 'builder_name': builder_name, |
| 895 'properties': properties, | 903 'properties': properties, |
| 896 } for builder_name in triggers]) | 904 } for builder_name in triggers]) |
| OLD | NEW |