Chromium Code Reviews| OLD | NEW |
|---|---|
| 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_extension_resources': [ | |
|
mark a. foltz
2016/04/04 20:25:06
media_router_test_extension_resources
Lei Lei
2016/04/13 00:22:42
Done.
| |
| 18 'telemetry/extension/background.html', | |
| 19 'telemetry/extension/manifest.json', | |
| 20 'telemetry/extension/script.js', | |
| 21 ], | |
| 17 }, # end of variables | 22 }, # end of variables |
| 18 'targets': [ | 23 'targets': [ |
| 19 { | 24 { |
| 20 'target_name': 'media_router_integration_test_files', | 25 'target_name': 'media_router_integration_test_files', |
| 21 'type': 'none', | 26 'type': 'none', |
| 22 'variables': { | 27 'variables': { |
| 23 'output_dir': '<(PRODUCT_DIR)/media_router/browser_test_resources', | 28 'output_dir': '<(PRODUCT_DIR)/media_router/browser_test_resources', |
| 24 'resource_files': [ | 29 'resource_files': [ |
| 25 '<@(media_router_integration_test_resources)', | 30 '<@(media_router_integration_test_resources)', |
| 26 ] | 31 ] |
| 27 }, | 32 }, |
| 28 'copies': [ | 33 'copies': [ |
| 29 { | 34 { |
| 30 'destination': '<(output_dir)', | 35 'destination': '<(output_dir)', |
| 31 'files': [ | 36 'files': [ |
| 32 '<@(resource_files)', | 37 '<@(resource_files)', |
| 33 ], | 38 ], |
| 34 }, | 39 }, |
| 35 ], | 40 ], |
| 36 }, # end of target 'media_router_integration_test_files' | 41 }, # end of target 'media_router_integration_test_files' |
| 42 { | |
| 43 'target_name': 'media_router_test_extension_files', | |
| 44 'type': 'none', | |
| 45 'variables': { | |
| 46 'output_dir': '<(PRODUCT_DIR)/media_router/test_extension', | |
| 47 'resource_files': [ | |
| 48 '<@(media_router_extension_resources)', | |
| 49 ] | |
| 50 }, | |
| 51 'copies': [ | |
| 52 { | |
| 53 'destination': '<(output_dir)', | |
| 54 'files': [ | |
| 55 '<@(resource_files)', | |
| 56 ], | |
| 57 }, | |
| 58 ], | |
| 59 }, # end of target 'media_router_test_extension_files' | |
| 37 ], # end of targets | 60 ], # end of targets |
| 38 } | 61 } |
| OLD | NEW |