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

Side by Side Diff: scripts/slave/recipes/android/appurify.py

Issue 1347263002: Revert of Cross-repo recipe package system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 3 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
« no previous file with comments | « scripts/slave/recipes.py ('k') | scripts/slave/recipes/android/builder.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 from recipe_engine.types import freeze 5 from infra.libs.infra_types import freeze
6 from recipe_engine import recipe_api 6 from recipe_engine import recipe_api
7 7
8 DEPS = [ 8 DEPS = [
9 'archive', 9 'archive',
10 'amp', 10 'amp',
11 'bot_update', 11 'bot_update',
12 'chromium', 12 'chromium',
13 'chromium_android', 13 'chromium_android',
14 'filter', 14 'filter',
15 'gclient', 15 'gclient',
16 'itertools',
16 'json', 17 'json',
17 'path', 18 'path',
18 'properties', 19 'properties',
19 'step', 20 'step',
20 'tryserver', 21 'tryserver',
21 ] 22 ]
22 23
23 CHROMIUM_AMP_INSTRUMENTATION_TESTS = freeze([ 24 CHROMIUM_AMP_INSTRUMENTATION_TESTS = freeze([
24 { 25 {
25 'gyp_target': 'content_shell_test_apk', 26 'gyp_target': 'content_shell_test_apk',
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 api.properties.generic( 383 api.properties.generic(
383 mastername='tryserver.chromium.linux', 384 mastername='tryserver.chromium.linux',
384 buildername='android_amp_rel_tests_recipe', 385 buildername='android_amp_rel_tests_recipe',
385 slavename='slavename') + 386 slavename='slavename') +
386 api.override_step_data( 387 api.override_step_data(
387 'analyze', 388 'analyze',
388 api.json.output({ 389 api.json.output({
389 'status': 'Found dependency', 390 'status': 'Found dependency',
390 'targets': [], 391 'targets': [],
391 'build_targets': ['base_unittests']}))) 392 'build_targets': ['base_unittests']})))
OLDNEW
« no previous file with comments | « scripts/slave/recipes.py ('k') | scripts/slave/recipes/android/builder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698