a0dbedf089
Change-Id: Ie74bc321dcd1a9150b55b36278e94acf1df34139 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/210220 Commit-Queue: Eric Boren <borenet@google.com> Auto-Submit: Ben Wagner aka dogben <benjaminwagner@google.com> Reviewed-by: Eric Boren <borenet@google.com>
22 lines
460 B
Python
22 lines
460 B
Python
# 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.
|
|
|
|
|
|
DEPS = [
|
|
'git',
|
|
'recipe_engine/platform',
|
|
'recipe_engine/step',
|
|
]
|
|
|
|
|
|
def RunSteps(api):
|
|
api.step('1', cmd=['git', 'status'])
|
|
with api.git.env():
|
|
api.step('2', cmd=['git', 'status'])
|
|
|
|
|
|
def GenTests(api):
|
|
yield api.test('test')
|
|
yield api.test('test-win') + api.platform('win', 64)
|