blob: 2603df5d05ead0055487cd5c16ef84e8d3301b62 [file] [log] [blame]
# Copyright 2017 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.
PYTHON_VERSION_COMPATIBILITY = 'PY2+3'
DEPS = [
'infra_system',
'recipe_engine/context',
'recipe_engine/platform',
'recipe_engine/step',
]
def RunSteps(api):
api.step('dump env', ['echo', api.infra_system.sys_bin_path])
def GenTests(api):
for plat in ('linux', 'mac', 'win'):
yield (
api.test(plat) +
api.platform(plat, 64))