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

Side by Side Diff: chrome/test/media_router/media_router_tests.gypi

Issue 1843063004: Add new Telemetry tests to get CPU and memory usage for idle and flinging two test scenarios. Mirro… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Jennifer's comments Created 4 years, 8 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
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 { 5 {
6 'variables': { 6 'variables': {
7 'media_router_integration_test_resources': [ 7 'media_router_integration_test_resources': [
8 'resources/basic_test.html', 8 'resources/basic_test.html',
9 'resources/close_route_with_error_on_send.json', 9 'resources/close_route_with_error_on_send.json',
10 'resources/common.js', 10 'resources/common.js',
11 'resources/fail_create_route.json', 11 'resources/fail_create_route.json',
12 'resources/fail_reconnect_session.html', 12 'resources/fail_reconnect_session.html',
13 'resources/fail_reconnect_session.json', 13 'resources/fail_reconnect_session.json',
14 'resources/no_provider.json', 14 'resources/no_provider.json',
15 'resources/route_creation_timed_out.json', 15 'resources/route_creation_timed_out.json',
16 ], 16 ],
17 'media_router_test_extension_resources': [
18 'telemetry/extension/manifest.json',
19 'telemetry/extension/script.js',
20 ],
17 }, # end of variables 21 }, # end of variables
18 'targets': [ 22 'targets': [
19 { 23 {
20 'target_name': 'media_router_integration_test_files', 24 'target_name': 'media_router_integration_test_files',
21 'type': 'none', 25 'type': 'none',
22 'variables': { 26 'variables': {
23 'output_dir': '<(PRODUCT_DIR)/media_router/browser_test_resources', 27 'output_dir': '<(PRODUCT_DIR)/media_router/browser_test_resources',
24 'resource_files': [ 28 'resource_files': [
25 '<@(media_router_integration_test_resources)', 29 '<@(media_router_integration_test_resources)',
26 ] 30 ]
27 }, 31 },
28 'copies': [ 32 'copies': [
29 { 33 {
30 'destination': '<(output_dir)', 34 'destination': '<(output_dir)',
31 'files': [ 35 'files': [
32 '<@(resource_files)', 36 '<@(resource_files)',
33 ], 37 ],
34 }, 38 },
35 ], 39 ],
36 }, # end of target 'media_router_integration_test_files' 40 }, # end of target 'media_router_integration_test_files'
41 {
42 'target_name': 'media_router_test_extension_files',
43 'type': 'none',
44 'variables': {
45 'output_dir': '<(PRODUCT_DIR)/media_router/test_extension',
46 'resource_files': [
47 '<@(media_router_test_extension_resources)',
48 ]
49 },
50 'copies': [
51 {
52 'destination': '<(output_dir)',
53 'files': [
54 '<@(resource_files)',
55 ],
56 },
57 ],
58 }, # end of target 'media_router_test_extension_files'
37 ], # end of targets 59 ], # end of targets
38 } 60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698