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

Side by Side Diff: chrome/telemetry_unittests.isolate

Issue 1579743002: [Telemetry] Update telemetry_unittests to use tools/perf/run_telemetry_tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Marc's comments Created 4 years, 11 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
« no previous file with comments | « no previous file | chrome/test/BUILD.gn » ('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 'includes': [ 5 'includes': [
6 '../tools/perf/chrome_telemetry_build/telemetry_chrome_test.isolate', 6 '../tools/perf/chrome_telemetry_build/telemetry_chrome_test.isolate',
7 ], 7 ],
8 'conditions': [ 8 'conditions': [
9 ['OS=="mac" or OS=="win"', { 9 ['OS=="mac" or OS=="win"', {
10 'variables': { 10 'variables': {
11 'files': [ 11 'files': [
12 '../tools/perf/run_telemetry_tests',
12 # Other dependencies of the tests and their harness. 13 # Other dependencies of the tests and their harness.
13 '../testing/test_env.py', 14 '../testing/test_env.py',
14 '../testing/xvfb.py', 15 '../testing/xvfb.py',
15 '../testing/scripts/common.py', 16 '../testing/scripts/common.py',
16 '../testing/scripts/run_telemetry_as_googletest.py', 17 '../testing/scripts/run_telemetry_as_googletest.py',
17 ], 18 ],
18 } 19 }
19 }], 20 }],
20 ['OS=="mac"', { 21 ['OS=="mac"', {
21 'variables': { 22 'variables': {
22 'command': [ 23 'command': [
23 '../testing/scripts/run_telemetry_as_googletest.py', 24 '../testing/scripts/run_telemetry_as_googletest.py',
24 '../tools/telemetry/run_tests', 25 '../tools/perf/run_telemetry_tests',
25 '-v', 26 '-v',
26 '--chrome-root', 27 '--chrome-root',
27 '..', 28 '..',
28 ], 29 ],
29 }, 30 },
30 }], 31 }],
31 ['OS=="win"', { 32 ['OS=="win"', {
32 'variables': { 33 'variables': {
33 'command': [ 34 'command': [
34 '../testing/scripts/run_telemetry_as_googletest.py', 35 '../testing/scripts/run_telemetry_as_googletest.py',
35 '../tools/telemetry/run_tests', 36 '../tools/perf/run_telemetry_tests',
36 '-v', 37 '-v',
37 '--chrome-root', 38 '--chrome-root',
38 '..', 39 '..',
39 # crbug.com/570955 40 # crbug.com/570955
40 # TODO(nednguyen): Remove --jobs=1 once the bug is fixed to speed up 41 # TODO(nednguyen): Remove --jobs=1 once the bug is fixed to speed up
41 # the test run. 42 # the test run.
42 '--job=1', 43 '--job=1',
43 ], 44 ],
44 }, 45 },
45 }], 46 }],
46 ] 47 ]
47 } 48 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698