1# Copyright 2016 The Chromium Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5 6# Recipe module for Skia Swarming compile. 7 8 9DEPS = [ 10 'recipe_engine/path', 11 'recipe_engine/platform', 12 'recipe_engine/properties', 13 'compile', 14] 15 16 17def RunSteps(api): 18 api.compile.run() 19 20 21def GenTests(api): 22 yield ( 23 api.test('Build-Mac-Clang-Arm7-Release') + 24 api.properties(buildername='Build-Mac-Clang-Arm7-Release-iOS', 25 mastername='fake-master', 26 slavename='fake-slave', 27 buildnumber=5, 28 repository='https://skia.googlesource.com/skia.git', 29 revision='abc123', 30 path_config='kitchen', 31 swarm_out_dir='[SWARM_OUT_DIR]') + 32 api.path.exists( 33 api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt') 34 ) 35 ) 36