Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(451)

Side by Side Diff: recipe_modules/infra_paths/example.py

Issue 1926033002: depot_tools: add infra_paths recipe module for infra-specific paths (attempt #2) (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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 DEPS = [
6 'infra_paths',
7 'recipe_engine/platform',
8 'recipe_engine/properties',
9 ]
10
11
12 def RunSteps(api):
13 return
martiniss 2016/04/28 23:15:23 maybe add an actual example here? Like echo the sl
Paweł Hajdan Jr. 2016/04/29 09:34:48 Done. FWIW, not sure how useful it is: repr() just
14
15
16 def GenTests(api):
17 yield api.test('basic')
18
19 for platform in ('linux', 'mac', 'win'):
20 for path_config in ('buildbot', 'kitchen'):
21 yield (
22 api.test('paths_%s_%s' % (path_config, platform)) +
23 api.platform.name(platform) +
24 api.properties(path_config=path_config)
25 )
OLDNEW
« no previous file with comments | « recipe_modules/infra_paths/api.py ('k') | recipe_modules/infra_paths/example.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698