| # Copyright 2020 The Chromium Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| from recipe_engine.recipe_api import Property | |
| PYTHON_VERSION_COMPATIBILITY = 'PY3' | |
| DEPS = [ | |
| 'flutter/token_util', | |
| ] | |
| def RunSteps(api): | |
| api.token_util.metric_center_token() | |
| api.token_util.cocoon_token() | |
| def GenTests(api): | |
| yield api.test('basic') |