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

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

Issue 2321703002: Remove all gyp[i] files in //chrome (Closed)
Patch Set: merge Created 4 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
« no previous file with comments | « chrome/test/media_router/e2e_tests.gyp ('k') | chrome/test/mini_installer/test_installer.gypi » ('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 2015 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 'media_router_integration_test_resources': [
8 'resources/basic_test.html',
9 'resources/close_route_with_error_on_send.json',
10 'resources/common.js',
11 'resources/fail_create_route.json',
12 'resources/fail_reconnect_session.html',
13 'resources/fail_reconnect_session.json',
14 'resources/no_provider.json',
15 'resources/no_sinks.json',
16 'resources/no_supported_sinks.json',
17 'resources/route_creation_timed_out.json',
18 ],
19 'media_router_test_extension_resources': [
20 'telemetry/extension/manifest.json',
21 'telemetry/extension/script.js',
22 ],
23 }, # end of variables
24 'targets': [
25 {
26 'target_name': 'media_router_integration_test_files',
27 'type': 'none',
28 'variables': {
29 'output_dir': '<(PRODUCT_DIR)/media_router/browser_test_resources',
30 'resource_files': [
31 '<@(media_router_integration_test_resources)',
32 ]
33 },
34 'copies': [
35 {
36 'destination': '<(output_dir)',
37 'files': [
38 '<@(resource_files)',
39 ],
40 },
41 ],
42 }, # end of target 'media_router_integration_test_files'
43 {
44 'target_name': 'media_router_test_extension_files',
45 'type': 'none',
46 'variables': {
47 'output_dir': '<(PRODUCT_DIR)/media_router/test_extension',
48 'resource_files': [
49 '<@(media_router_test_extension_resources)',
50 ]
51 },
52 'copies': [
53 {
54 'destination': '<(output_dir)',
55 'files': [
56 '<@(resource_files)',
57 ],
58 },
59 ],
60 }, # end of target 'media_router_test_extension_files'
61 ], # end of targets
62 }
OLDNEW
« no previous file with comments | « chrome/test/media_router/e2e_tests.gyp ('k') | chrome/test/mini_installer/test_installer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698