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

Side by Side Diff: scripts/slave/recipe_modules/gpu/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
« no previous file with comments | « scripts/slave/recipe_modules/goma/api.py ('k') | scripts/slave/recipe_modules/gpu/test_api.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 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 infra.libs.infra_types import freeze
6 from slave 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
16 SIMPLE_NON_OPEN_SOURCE_TESTS_TO_RUN = freeze([ 16 SIMPLE_NON_OPEN_SOURCE_TESTS_TO_RUN = freeze([
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 if extra_browser_args: 525 if extra_browser_args:
526 extra_browser_args_string += ' ' + ' '.join(extra_browser_args) 526 extra_browser_args_string += ' ' + ' '.join(extra_browser_args)
527 test_args.append(extra_browser_args_string) 527 test_args.append(extra_browser_args_string)
528 528
529 return self.m.chromium.steps.TelemetryGPUTest( 529 return self.m.chromium.steps.TelemetryGPUTest(
530 name, chrome_revision, webkit_revision, args=test_args, 530 name, chrome_revision, webkit_revision, args=test_args,
531 target_name=target_name, enable_swarming=enable_swarming, 531 target_name=target_name, enable_swarming=enable_swarming,
532 swarming_dimensions=swarming_dimensions, 532 swarming_dimensions=swarming_dimensions,
533 master_class_name=self._master_class_name_for_testing, 533 master_class_name=self._master_class_name_for_testing,
534 swarming_extra_suffix=self._get_gpu_suffix(swarming_dimensions)) 534 swarming_extra_suffix=self._get_gpu_suffix(swarming_dimensions))
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/goma/api.py ('k') | scripts/slave/recipe_modules/gpu/test_api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698