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

Side by Side Diff: scripts/slave/recipe_modules/archive/api.py

Issue 1151423002: Move recipe engine to third_party/recipe_engine. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Moved field_composer_test with its buddies Created 5 years, 6 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 import re 5 import re
6 6
7 from slave import recipe_api 7 from recipe_engine import recipe_api
8 8
9 9
10 # TODO(machenbach): Chromium specific data should move out of the archive 10 # TODO(machenbach): Chromium specific data should move out of the archive
11 # module, into e.g. the chromium test configs. 11 # module, into e.g. the chromium test configs.
12 EXCLUDED_FILES_ALL_PLATFORMS = [ 12 EXCLUDED_FILES_ALL_PLATFORMS = [
13 '.landmines', 13 '.landmines',
14 '.ninja_deps', 14 '.ninja_deps',
15 '.ninja_log', 15 '.ninja_log',
16 'gen', 16 'gen',
17 'obj', 17 'obj',
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 'archive_dependencies.py') 385 'archive_dependencies.py')
386 args = [] 386 args = []
387 args.extend(['--src-dir', self.m.path['checkout']]) 387 args.extend(['--src-dir', self.m.path['checkout']])
388 args.extend(['--target', target]) 388 args.extend(['--target', target])
389 args.extend(['--master', master]) 389 args.extend(['--master', master])
390 args.extend(['--builder', builder]) 390 args.extend(['--builder', builder])
391 args.extend(['--build', build]) 391 args.extend(['--build', build])
392 self.m.python(step_name, script, args, infra_step=True, **kwargs) 392 self.m.python(step_name, script, args, infra_step=True, **kwargs)
393 except self.m.step.StepFailure: 393 except self.m.step.StepFailure:
394 pass 394 pass
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/android/test_api.py ('k') | scripts/slave/recipe_modules/auto_bisect/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698