| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 DEPS = [ | 5 DEPS = [ |
| 6 'bot_update', | 6 'bot_update', |
| 7 'chromium_android', | 7 'chromium_android', |
| 8 'gclient', | 8 'gclient', |
| 9 'step', | 9 'step', |
| 10 'path', | 10 'path', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 } | 55 } |
| 56 | 56 |
| 57 def GenSteps(api): | 57 def GenSteps(api): |
| 58 buildername = api.properties['buildername'] | 58 buildername = api.properties['buildername'] |
| 59 builder = BUILDERS[buildername] | 59 builder = BUILDERS[buildername] |
| 60 api.chromium_android.configure_from_properties('base_config', | 60 api.chromium_android.configure_from_properties('base_config', |
| 61 REPO_NAME='src', | 61 REPO_NAME='src', |
| 62 REPO_URL=REPO_URL, | 62 REPO_URL=REPO_URL, |
| 63 INTERNAL=False, | 63 INTERNAL=False, |
| 64 BUILD_CONFIG='Release') | 64 BUILD_CONFIG='Release') |
| 65 api.gclient.set_config('android_shared') | 65 api.gclient.set_config('perf') |
| 66 api.gclient.apply_config('android') | 66 api.gclient.apply_config('android') |
| 67 | 67 |
| 68 yield api.bot_update.ensure_checkout() | 68 yield api.bot_update.ensure_checkout() |
| 69 api.path['checkout'] = api.path['slave_build'].join('src') | 69 api.path['checkout'] = api.path['slave_build'].join('src') |
| 70 | 70 |
| 71 yield api.chromium_android.download_build(bucket=builder['bucket'], | 71 yield api.chromium_android.download_build(bucket=builder['bucket'], |
| 72 path=builder['path'](api)) | 72 path=builder['path'](api)) |
| 73 | 73 |
| 74 # The directory extracted as src/full-build-linux and needs to be renamed to | 74 # The directory extracted as src/full-build-linux and needs to be renamed to |
| 75 # src/out/Release | 75 # src/out/Release |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 repo_name='src', | 117 repo_name='src', |
| 118 repo_url=REPO_URL, | 118 repo_url=REPO_URL, |
| 119 buildername=buildername, | 119 buildername=buildername, |
| 120 parent_buildername='parent_buildername', | 120 parent_buildername='parent_buildername', |
| 121 parent_buildnumber='1729', | 121 parent_buildnumber='1729', |
| 122 parent_revision='deadbeef', | 122 parent_revision='deadbeef', |
| 123 revision='deadbeef', | 123 revision='deadbeef', |
| 124 slavename='slavename', | 124 slavename='slavename', |
| 125 target='Release') | 125 target='Release') |
| 126 ) | 126 ) |
| OLD | NEW |