| 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 group("media_router_tests") { |
| 6 testonly = true |
| 7 data_deps = [ |
| 8 "//chrome/test:browser_tests", |
| 9 ] |
| 10 data = [ |
| 11 "$root_out_dir/mr_extension/", |
| 12 "internal/", |
| 13 "../../../media/test/data/player.html", |
| 14 "../../../media/test/data/bear-vp9-opus.webm", |
| 15 ] |
| 16 } |
| 17 |
| 5 # Browser test resource files. | 18 # Browser test resource files. |
| 6 media_router_integration_test_resources = [ | 19 media_router_integration_test_resources = [ |
| 7 "resources/basic_test.html", | 20 "resources/basic_test.html", |
| 8 "resources/close_route_with_error_on_send.json", | 21 "resources/close_route_with_error_on_send.json", |
| 9 "resources/common.js", | 22 "resources/common.js", |
| 10 "resources/fail_create_route.json", | 23 "resources/fail_create_route.json", |
| 11 "resources/fail_reconnect_session.html", | 24 "resources/fail_reconnect_session.html", |
| 12 "resources/fail_reconnect_session.json", | 25 "resources/fail_reconnect_session.json", |
| 13 "resources/no_provider.json", | 26 "resources/no_provider.json", |
| 14 "resources/no_sinks.json", | 27 "resources/no_sinks.json", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 ] | 65 ] |
| 53 deps = [ | 66 deps = [ |
| 54 ":browser_tests_resource_files", | 67 ":browser_tests_resource_files", |
| 55 "//chrome/browser/media/router:test_support", | 68 "//chrome/browser/media/router:test_support", |
| 56 "//chrome/test:test_support", | 69 "//chrome/test:test_support", |
| 57 "//chrome/test:test_support_ui", | 70 "//chrome/test:test_support_ui", |
| 58 "//skia", | 71 "//skia", |
| 59 "//testing/gtest", | 72 "//testing/gtest", |
| 60 ] | 73 ] |
| 61 } | 74 } |
| OLD | NEW |