Chromium Code Reviews| Index: tools/buildbot_spec.py |
| diff --git a/tools/buildbot_spec.py b/tools/buildbot_spec.py |
| index 9830e4528961ce9cd15366fe8751af89bd49eb9f..0d75077c49df6186fbc901b3634eeece134360c6 100755 |
| --- a/tools/buildbot_spec.py |
| +++ b/tools/buildbot_spec.py |
| @@ -162,6 +162,10 @@ def get_extra_env_vars(builder_dict): |
| elif builder_dict.get('compiler') == 'Clang': |
| env['CC'] = '/usr/bin/clang' |
| env['CXX'] = '/usr/bin/clang++' |
| + |
| + if builder_dict.get('extra_config') == 'Appurify': |
|
mtklein
2015/08/24 15:31:42
Note why?
borenet
2015/08/24 16:47:39
Done.
|
| + env['BUILDTYPE'] = CONFIG_DEBUG |
| + |
| return env |
| @@ -176,7 +180,10 @@ def build_targets_from_builder_dict(builder_dict): |
| t.append('nanobench') |
| return t |
| elif builder_dict['role'] == builder_name_schema.BUILDER_ROLE_PERF: |
| - return ['nanobench'] |
| + if 'Appurify' in builder_dict.get('extra_config', ''): |
|
mtklein
2015/08/24 15:31:42
Is there a practical difference between
if builde
borenet
2015/08/24 16:47:39
No, not really. This is just how I happened to co
mtklein
2015/08/24 17:35:33
Let's change one or the other so it's consistent?
borenet
2015/08/24 18:31:48
No more subtlety.
|
| + return ['VisualBenchTest_APK'] |
| + else: |
| + return ['nanobench'] |
| else: |
| return ['most'] |
| @@ -300,10 +307,12 @@ def self_test(): |
| 'Build-Ubuntu-GCC-x86_64-Release-Mesa', |
| 'Housekeeper-PerCommit', |
| 'Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot', |
| + 'Perf-Android-GCC-Nexus5-GPU-Adreno330-Arm7-Release-Appurify', |
| 'Test-Android-GCC-Nexus6-GPU-Adreno420-Arm7-Debug', |
| 'Test-ChromeOS-GCC-Link-CPU-AVX-x86_64-Debug', |
| 'Test-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug', |
| 'Test-Mac10.8-Clang-MacMini4.1-GPU-GeForce320M-x86_64-Release', |
| + 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage', |
| 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-SKNX_NO_SIMD', |
| 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared', |
| 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', |