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 # Browser test resource files. | 5 # Browser test resource files. |
| 6 media_router_integration_test_resources = [ | 6 media_router_integration_test_resources = [ |
| 7 "resources/basic_test.html", | 7 "resources/basic_test.html", |
| 8 "resources/close_route_with_error_on_send.json", | 8 "resources/close_route_with_error_on_send.json", |
| 9 "resources/common.js", | 9 "resources/common.js", |
| 10 "resources/fail_create_route.json", | 10 "resources/fail_create_route.json", |
| 11 "resources/fail_reconnect_session.html", | 11 "resources/fail_reconnect_session.html", |
| 12 "resources/fail_reconnect_session.json", | 12 "resources/fail_reconnect_session.json", |
| 13 "resources/no_provider.json", | 13 "resources/no_provider.json", |
| 14 "resources/route_creation_timed_out.json", | 14 "resources/route_creation_timed_out.json", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 media_router_extension_resources = [ | |
|
mark a. foltz
2016/04/04 20:25:06
Instead of duplicating file lists in the .gyp and
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 ] | |
| 22 | |
| 23 # GYP version: chrome/test/media_router/media_router_tests.gypi: | |
| 24 # media_router_test_extension_files | |
| 25 copy("test_extension_resource_files") { | |
| 26 # This list corresponds to media_router_extension_resources in | |
| 27 # media_router_test_extension_files target in GYP. | |
| 28 sources = media_router_extension_resources | |
| 29 outputs = [ | |
| 30 "$root_out_dir/media_router/test_extension/{{source_file_part}}", | |
| 31 ] | |
| 32 } | |
| 33 | |
| 17 # GYP version: chrome/test/media_router/media_router_tests.gypi: | 34 # GYP version: chrome/test/media_router/media_router_tests.gypi: |
| 18 # media_router_integration_test_files | 35 # media_router_integration_test_files |
| 19 copy("browser_tests_resource_files") { | 36 copy("browser_tests_resource_files") { |
| 20 # This list corresponds to media_router_integration_test_resources in | 37 # This list corresponds to media_router_integration_test_resources in |
| 21 # media_router_integration_test_files target in GYP. | 38 # media_router_integration_test_files target in GYP. |
| 22 sources = media_router_integration_test_resources | 39 sources = media_router_integration_test_resources |
| 23 outputs = [ | 40 outputs = [ |
| 24 "$root_out_dir/media_router/browser_test_resources/{{source_file_part}}", | 41 "$root_out_dir/media_router/browser_test_resources/{{source_file_part}}", |
| 25 ] | 42 ] |
| 26 } | 43 } |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 42 ] | 59 ] |
| 43 deps = [ | 60 deps = [ |
| 44 ":browser_tests_resource_files", | 61 ":browser_tests_resource_files", |
| 45 "//chrome/browser/media/router:test_support", | 62 "//chrome/browser/media/router:test_support", |
| 46 "//chrome/test:test_support", | 63 "//chrome/test:test_support", |
| 47 "//chrome/test:test_support_ui", | 64 "//chrome/test:test_support_ui", |
| 48 "//skia", | 65 "//skia", |
| 49 "//testing/gtest", | 66 "//testing/gtest", |
| 50 ] | 67 ] |
| 51 } | 68 } |
| OLD | NEW |