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

Side by Side Diff: scripts/slave/recipes/nacl/sdk.py

Issue 1919193002: build: roll infra_paths changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: merge 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 DEPS = [ 5 DEPS = [
6 'depot_tools/bot_update', 6 'depot_tools/bot_update',
7 'chromium', 7 'chromium',
8 'depot_tools/gclient', 8 'depot_tools/gclient',
9 'depot_tools/infra_paths',
9 'recipe_engine/path', 10 'recipe_engine/path',
10 'recipe_engine/platform', 11 'recipe_engine/platform',
11 'recipe_engine/properties', 12 'recipe_engine/properties',
12 'recipe_engine/python', 13 'recipe_engine/python',
13 'depot_tools/tryserver', 14 'depot_tools/tryserver',
14 ] 15 ]
15 16
16 17
17 def RunSteps(api): 18 def RunSteps(api):
18 api.chromium.set_config('chromium') 19 api.chromium.set_config('chromium')
19 api.gclient.set_config('chromium') 20 api.gclient.set_config('chromium')
20 api.bot_update.ensure_checkout(force=True) 21 api.bot_update.ensure_checkout(force=True)
21 api.tryserver.maybe_apply_issue() 22 api.tryserver.maybe_apply_issue()
22 api.chromium.runhooks() 23 api.chromium.runhooks()
23 api.chromium.cleanup_temp() 24 api.chromium.cleanup_temp()
24 api.chromium.compile(['chromium_builder_tests']) 25 api.chromium.compile(['chromium_builder_tests'])
25 api.python( 26 api.python(
26 'annotated_steps', 27 'annotated_steps',
27 api.path['build'].join( 28 api.infra_paths['build'].join(
28 'scripts', 'slave', 'chromium', 'nacl_sdk_buildbot_run.py'), 29 'scripts', 'slave', 'chromium', 'nacl_sdk_buildbot_run.py'),
29 allow_subannotations=True) 30 allow_subannotations=True)
30 31
31 32
32 def GenTests(api): 33 def GenTests(api):
33 yield ( 34 yield (
34 api.test('basic') + 35 api.test('basic') +
35 api.properties.generic() + 36 api.properties.generic() +
36 api.platform('linux', 64) 37 api.platform('linux', 64)
37 ) 38 )
OLDNEW
« no previous file with comments | « scripts/slave/recipes/nacl.expected/linux_triggering.json ('k') | scripts/slave/recipes/nacl/sdk.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698