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 "meta_tags_egtest.mm", | 11 "meta_tags_egtest.mm", |
11 "navigation_egtest.mm", | 12 "navigation_egtest.mm", |
12 "page_state_egtest.mm", | 13 "page_state_egtest.mm", |
13 "pdf_egtest.mm", | 14 "pdf_egtest.mm", |
14 "plugin_placeholder_egtest.mm", | 15 "plugin_placeholder_egtest.mm", |
15 "redirect_egtest.mm", | 16 "redirect_egtest.mm", |
16 ] | 17 ] |
17 | 18 |
18 deps = [ | 19 deps = [ |
19 "//base", | 20 "//base", |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 "//build/config/ios:xctest", | 58 "//build/config/ios:xctest", |
58 ] | 59 ] |
59 | 60 |
60 sources = [ | 61 sources = [ |
61 "app/navigation_test_util.h", | 62 "app/navigation_test_util.h", |
62 "app/navigation_test_util.mm", | 63 "app/navigation_test_util.mm", |
63 "app/web_shell_test_util.h", | 64 "app/web_shell_test_util.h", |
64 "app/web_shell_test_util.mm", | 65 "app/web_shell_test_util.mm", |
65 "app/web_view_interaction_test_util.h", | 66 "app/web_view_interaction_test_util.h", |
66 "app/web_view_interaction_test_util.mm", | 67 "app/web_view_interaction_test_util.mm", |
| 68 "earl_grey/shell_actions.h", |
| 69 "earl_grey/shell_actions.mm", |
67 "earl_grey/shell_base_test_case.h", | 70 "earl_grey/shell_base_test_case.h", |
68 "earl_grey/shell_base_test_case.mm", | 71 "earl_grey/shell_base_test_case.mm", |
69 "earl_grey/shell_matchers.h", | 72 "earl_grey/shell_matchers.h", |
70 "earl_grey/shell_matchers.mm", | 73 "earl_grey/shell_matchers.mm", |
71 ] | 74 ] |
72 } | 75 } |
73 | 76 |
74 bundle_data("bundle") { | 77 bundle_data("bundle") { |
75 visibility = [ ":ios_web_shell_test_host" ] | 78 visibility = [ ":ios_web_shell_test_host" ] |
76 sources = [ | 79 sources = [ |
77 "http_server_files/basic_navigation_test.html", | 80 "http_server_files/basic_navigation_test.html", |
78 "http_server_files/tall_page.html", | 81 "http_server_files/tall_page.html", |
79 "http_server_files/testpage.pdf", | 82 "http_server_files/testpage.pdf", |
80 ] | 83 ] |
81 outputs = [ | 84 outputs = [ |
82 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + | 85 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + |
83 "{{source_file_part}}", | 86 "{{source_file_part}}", |
84 ] | 87 ] |
85 } | 88 } |
OLD | NEW |