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

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

Issue 1241323004: Cross-repo recipe package system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Roll to latest recipes-py 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
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 from infra.libs.infra_types import freeze 5 from recipe_engine.types import freeze
6 from recipe_engine import recipe_api 6 from recipe_engine import recipe_api
7 7
8 import common 8 import common
9 9
10 SIMPLE_TESTS_TO_RUN = freeze([ 10 SIMPLE_TESTS_TO_RUN = freeze([
11 'content_gl_tests', 11 'content_gl_tests',
12 'gl_tests', 12 'gl_tests',
13 'angle_unittests' 13 'angle_unittests'
14 ]) 14 ])
15 15
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 if extra_browser_args: 589 if extra_browser_args:
590 extra_browser_args_string += ' ' + ' '.join(extra_browser_args) 590 extra_browser_args_string += ' ' + ' '.join(extra_browser_args)
591 test_args.append(extra_browser_args_string) 591 test_args.append(extra_browser_args_string)
592 592
593 return self.m.chromium_tests.steps.TelemetryGPUTest( 593 return self.m.chromium_tests.steps.TelemetryGPUTest(
594 name, chrome_revision, webkit_revision, args=test_args, 594 name, chrome_revision, webkit_revision, args=test_args,
595 target_name=target_name, enable_swarming=enable_swarming, 595 target_name=target_name, enable_swarming=enable_swarming,
596 swarming_dimensions=swarming_dimensions, 596 swarming_dimensions=swarming_dimensions,
597 master_class_name=self._master_class_name_for_testing, 597 master_class_name=self._master_class_name_for_testing,
598 swarming_extra_suffix=self._get_gpu_suffix(swarming_dimensions)) 598 swarming_extra_suffix=self._get_gpu_suffix(swarming_dimensions))
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/git/api.py ('k') | scripts/slave/recipe_modules/isolate/resources/compare_build_artifacts.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698