| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # READ THIS: | 7 # READ THIS: |
| 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 9 | 9 |
| 10 import os | 10 import os |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 } | 68 } |
| 69 | 69 |
| 70 # combined builder/tester android recipes | 70 # combined builder/tester android recipes |
| 71 b_android_dbg_tests_recipe = { | 71 b_android_dbg_tests_recipe = { |
| 72 'name': 'android_dbg_tests_recipe', | 72 'name': 'android_dbg_tests_recipe', |
| 73 'factory': m_annotator.BaseFactory('android/tester'), | 73 'factory': m_annotator.BaseFactory('android/tester'), |
| 74 # Share build directory with compatible existing builders to save space. | 74 # Share build directory with compatible existing builders to save space. |
| 75 'slavebuilddir': 'android', | 75 'slavebuilddir': 'android', |
| 76 } | 76 } |
| 77 | 77 |
| 78 b_android_compile_dbg = { |
| 79 'name': 'android_compile_dbg', |
| 80 'factory': m_annotator.BaseFactory('chromium_trybot'), |
| 81 } |
| 82 |
| 78 b_android_compile_rel = { | 83 b_android_compile_rel = { |
| 79 'name': 'android_compile_rel', | 84 'name': 'android_compile_rel', |
| 80 'factory': m_annotator.BaseFactory('chromium_trybot'), | 85 'factory': m_annotator.BaseFactory('chromium_trybot'), |
| 81 } | 86 } |
| 82 | 87 |
| 83 b_android_rel_tests_recipe = { | 88 b_android_rel_tests_recipe = { |
| 84 'name': 'android_rel_tests_recipe', | 89 'name': 'android_rel_tests_recipe', |
| 85 'factory': m_annotator.BaseFactory('android/tester'), | 90 'factory': m_annotator.BaseFactory('android/tester'), |
| 86 # Share build directory with compatible existing builders to save space. | 91 # Share build directory with compatible existing builders to save space. |
| 87 'slavebuilddir': 'android', | 92 'slavebuilddir': 'android', |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 'name': '%s_presubmit' % name, | 391 'name': '%s_presubmit' % name, |
| 387 'slavebuilddir': (slavebuilddir or ('presubmit_%s' % name)), | 392 'slavebuilddir': (slavebuilddir or ('presubmit_%s' % name)), |
| 388 'factory': m_annotator.BaseFactory('run_presubmit', {'repo_name': name}), | 393 'factory': m_annotator.BaseFactory('run_presubmit', {'repo_name': name}), |
| 389 } | 394 } |
| 390 | 395 |
| 391 b_chromium_presubmit = presubmit('chromium', slavebuilddir='linux') | 396 b_chromium_presubmit = presubmit('chromium', slavebuilddir='linux') |
| 392 b_tools_build_presubmit = presubmit('tools_build') | 397 b_tools_build_presubmit = presubmit('tools_build') |
| 393 | 398 |
| 394 | 399 |
| 395 c['builders'] = [ | 400 c['builders'] = [ |
| 401 b_android_compile_dbg, |
| 396 b_android_compile_rel, | 402 b_android_compile_rel, |
| 397 b_android_dbg_tests_recipe, b_android_arm64_dbg_recipe, | 403 b_android_dbg_tests_recipe, b_android_arm64_dbg_recipe, |
| 398 b_android_fyi_dbg_tests_recipe, | 404 b_android_fyi_dbg_tests_recipe, |
| 399 b_android_x86_dbg_recipe, | 405 b_android_x86_dbg_recipe, |
| 400 b_android_clang_dbg_recipe, | 406 b_android_clang_dbg_recipe, |
| 401 b_android_rel_tests_recipe, | 407 b_android_rel_tests_recipe, |
| 402 b_android_aosp, | 408 b_android_aosp, |
| 403 b_linux_clang_tsan, | 409 b_linux_clang_tsan, |
| 404 b_linux_chromium_asan_rel, | 410 b_linux_chromium_asan_rel, |
| 405 b_linux_chromium_asan_rel_ng, | 411 b_linux_chromium_asan_rel_ng, |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 ) | 579 ) |
| 574 | 580 |
| 575 | 581 |
| 576 ####### PROJECT IDENTITY | 582 ####### PROJECT IDENTITY |
| 577 | 583 |
| 578 # The 'projectURL' string will be used to provide a link | 584 # The 'projectURL' string will be used to provide a link |
| 579 # from buildbot HTML pages to your project's home page. | 585 # from buildbot HTML pages to your project's home page. |
| 580 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 586 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 581 | 587 |
| 582 # vi: set ts=4 sts=2 sw=2 et: | 588 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |