| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//ios/build/config.gni") | 5 import("//ios/build/config.gni") |
| 6 import("//ios/third_party/earl_grey/ios_eg_test.gni") | 6 import("//ios/third_party/earl_grey/ios_eg_test.gni") |
| 7 | 7 |
| 8 ios_eg_test("ios_web_shell_test") { | 8 ios_eg_test("ios_web_shell_test") { |
| 9 sources = [ | 9 sources = [ |
| 10 "context_menu_egtest.mm", | 10 "context_menu_egtest.mm", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "app/navigation_test_util.h", | 62 "app/navigation_test_util.h", |
| 63 "app/navigation_test_util.mm", | 63 "app/navigation_test_util.mm", |
| 64 "app/web_shell_test_util.h", | 64 "app/web_shell_test_util.h", |
| 65 "app/web_shell_test_util.mm", | 65 "app/web_shell_test_util.mm", |
| 66 "app/web_view_interaction_test_util.h", | 66 "app/web_view_interaction_test_util.h", |
| 67 "app/web_view_interaction_test_util.mm", | 67 "app/web_view_interaction_test_util.mm", |
| 68 "earl_grey/shell_actions.h", | 68 "earl_grey/shell_actions.h", |
| 69 "earl_grey/shell_actions.mm", | 69 "earl_grey/shell_actions.mm", |
| 70 "earl_grey/shell_base_test_case.h", | 70 "earl_grey/shell_base_test_case.h", |
| 71 "earl_grey/shell_base_test_case.mm", | 71 "earl_grey/shell_base_test_case.mm", |
| 72 "earl_grey/shell_earl_grey.h", |
| 73 "earl_grey/shell_earl_grey.mm", |
| 72 "earl_grey/shell_matchers.h", | 74 "earl_grey/shell_matchers.h", |
| 73 "earl_grey/shell_matchers.mm", | 75 "earl_grey/shell_matchers.mm", |
| 74 ] | 76 ] |
| 75 } | 77 } |
| 76 | 78 |
| 77 bundle_data("bundle") { | 79 bundle_data("bundle") { |
| 78 visibility = [ ":ios_web_shell_test_host" ] | 80 visibility = [ ":ios_web_shell_test_host" ] |
| 79 sources = [ | 81 sources = [ |
| 80 "http_server_files/basic_navigation_test.html", | 82 "http_server_files/basic_navigation_test.html", |
| 81 "http_server_files/tall_page.html", | 83 "http_server_files/tall_page.html", |
| 82 "http_server_files/testpage.pdf", | 84 "http_server_files/testpage.pdf", |
| 83 ] | 85 ] |
| 84 outputs = [ | 86 outputs = [ |
| 85 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + | 87 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + |
| 86 "{{source_file_part}}", | 88 "{{source_file_part}}", |
| 87 ] | 89 ] |
| 88 } | 90 } |
| OLD | NEW |