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

Side by Side Diff: chromecast/build/tests/test_list.gypi

Issue 719353005: Chromecast: test support for builders. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 1 month 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
« no previous file with comments | « no previous file | chromecast/chromecast.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'variables': {
8 'variables': {
9 # Note: priority can be set from 1 to 9 to indicate precedence for
10 # filters (larger overrides smaller).
11 'priority%': 1,
12 'test_output_folder': '<(SHARED_INTERMEDIATE_DIR)/chromecast/tests',
13 },
14 # Copy from previous level.
15 'test_output_folder': '<(test_output_folder)',
16
17 'test_output_file_prefix':
18 '<(test_output_folder)/<(priority)-<(_target_name)',
19 },
20 # Copy from previous level.
21 'test_output_folder': '<(test_output_folder)',
22
23 'test_filters_output_file': '<(test_output_file_prefix).filters',
24 'test_generator_py': '<(DEPTH)/chromecast/tools/build/generate_test_lists.py ',
25 'test_list_output_file': '<(test_output_file_prefix).tests',
26 'filters%': [],
27 },
28 'actions': [
29 {
30 'action_name': 'generate_test_list',
31 'inputs': ['<(test_generator_py)'],
32 'outputs': ['<(test_list_output_file)'],
33 'message': 'Generating test list from <(_target_name)',
34 'action': [
35 'python', '<@(_inputs)',
36 '-o', '<(test_list_output_file)',
37 'create_list',
38 '<@(_dependencies)'
39 ],
40 },
41 {
42 'action_name': 'generate_filter_list',
43 'inputs': ['<(test_generator_py)'],
44 'outputs': ['<(test_filters_output_file)'],
45 'message': 'Generating filter list from <(_target_name)',
46 'action': [
47 'python', '<@(_inputs)',
48 '-o', '<(test_filters_output_file)',
49 'create_list',
50 '<@(filters)'
51 ],
52 },
53 ],
54 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/chromecast.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698