blob: e7a21a5ef4d0759172563c6d14cf01373fab8a3c [file] [log] [blame]
# 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.post_process import DoesNotRun, Filter, StatusFailure
DEPS = [
'flutter/adhoc_validation',
'recipe_engine/platform',
]
def RunSteps(api):
api.adhoc_validation.run('dart analyze', 'analyze')
def GenTests(api):
yield api.test('win', api.platform.name('win'))
yield api.test('linux', api.platform.name('linux'))