| 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 from recipe_engine.types import freeze | 5 from recipe_engine.types import freeze |
| 6 | 6 |
| 7 DEPS = [ | 7 DEPS = [ |
| 8 'depot_tools/bot_update', | 8 'depot_tools/bot_update', |
| 9 'chromium', | 9 'chromium', |
| 10 'depot_tools/gclient', | 10 'depot_tools/gclient', |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 tests_that_do_not_pass = freeze([ | 58 tests_that_do_not_pass = freeze([ |
| 59 ]) | 59 ]) |
| 60 | 60 |
| 61 dbus_tests = freeze([ | 61 dbus_tests = freeze([ |
| 62 'dbus_unittests', | 62 'dbus_unittests', |
| 63 ]) | 63 ]) |
| 64 | 64 |
| 65 def RunSteps(api): | 65 def RunSteps(api): |
| 66 | 66 |
| 67 api.chromium.set_config('chromium', BUILD_CONFIG='Debug') | 67 api.chromium.set_config('chromium', BUILD_CONFIG='Debug') |
| 68 api.gclient.set_config('chromium', BUILD_CONFIG='Debug') | 68 api.gclient.set_config('chromium', BUILD_CONFIG='Debug', GIT_MODE=True) |
| 69 | 69 |
| 70 api.bot_update.ensure_checkout() | 70 api.bot_update.ensure_checkout() |
| 71 | 71 |
| 72 api.chromium.c.gyp_env.GYP_DEFINES['embedded'] = 1 | 72 api.chromium.c.gyp_env.GYP_DEFINES['embedded'] = 1 |
| 73 | 73 |
| 74 api.chromium.runhooks() | 74 api.chromium.runhooks() |
| 75 api.chromium.compile(['content_shell'], name='compile content_shell') | 75 api.chromium.compile(['content_shell'], name='compile content_shell') |
| 76 | 76 |
| 77 try: | 77 try: |
| 78 api.python('check ecs deps', api.path['checkout'].join('tools', | 78 api.python('check ecs deps', api.path['checkout'].join('tools', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 slavename="test_slave") | 123 slavename="test_slave") |
| 124 ) | 124 ) |
| 125 | 125 |
| 126 yield ( | 126 yield ( |
| 127 api.test('check_ecs_deps_fail') + | 127 api.test('check_ecs_deps_fail') + |
| 128 api.properties.scheduled(mastername="chromium.fyi", | 128 api.properties.scheduled(mastername="chromium.fyi", |
| 129 buildername='linux_ecs_ozone', | 129 buildername='linux_ecs_ozone', |
| 130 slavename="test_slave") + | 130 slavename="test_slave") + |
| 131 api.step_data('check ecs deps', retcode=1) | 131 api.step_data('check ecs deps', retcode=1) |
| 132 ) | 132 ) |
| OLD | NEW |