| 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 "meta_tags_egtest.mm", | 10 "meta_tags_egtest.mm", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "//base/test:test_support", | 46 "//base/test:test_support", |
| 47 "//ios/testing/earl_grey:earl_grey_support", | 47 "//ios/testing/earl_grey:earl_grey_support", |
| 48 "//ios/third_party/earl_grey", | 48 "//ios/third_party/earl_grey", |
| 49 "//ios/web", | 49 "//ios/web", |
| 50 "//ios/web:earl_grey_test_support", | 50 "//ios/web:earl_grey_test_support", |
| 51 "//ios/web:test_support", | 51 "//ios/web:test_support", |
| 52 "//ios/web/shell", | 52 "//ios/web/shell", |
| 53 "//url", | 53 "//url", |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 public_deps = [ |
| 57 "//build/config/ios:xctest", |
| 58 ] |
| 59 |
| 56 sources = [ | 60 sources = [ |
| 57 "app/navigation_test_util.h", | 61 "app/navigation_test_util.h", |
| 58 "app/navigation_test_util.mm", | 62 "app/navigation_test_util.mm", |
| 59 "app/web_shell_test_util.h", | 63 "app/web_shell_test_util.h", |
| 60 "app/web_shell_test_util.mm", | 64 "app/web_shell_test_util.mm", |
| 61 "app/web_view_interaction_test_util.h", | 65 "app/web_view_interaction_test_util.h", |
| 62 "app/web_view_interaction_test_util.mm", | 66 "app/web_view_interaction_test_util.mm", |
| 63 "earl_grey/shell_base_test_case.h", | 67 "earl_grey/shell_base_test_case.h", |
| 64 "earl_grey/shell_base_test_case.mm", | 68 "earl_grey/shell_base_test_case.mm", |
| 65 "earl_grey/shell_matchers.h", | 69 "earl_grey/shell_matchers.h", |
| 66 "earl_grey/shell_matchers.mm", | 70 "earl_grey/shell_matchers.mm", |
| 67 ] | 71 ] |
| 68 } | 72 } |
| 69 | 73 |
| 70 bundle_data("bundle") { | 74 bundle_data("bundle") { |
| 71 visibility = [ ":ios_web_shell_test_host" ] | 75 visibility = [ ":ios_web_shell_test_host" ] |
| 72 sources = [ | 76 sources = [ |
| 73 "http_server_files/basic_navigation_test.html", | 77 "http_server_files/basic_navigation_test.html", |
| 74 "http_server_files/tall_page.html", | 78 "http_server_files/tall_page.html", |
| 75 "http_server_files/testpage.pdf", | 79 "http_server_files/testpage.pdf", |
| 76 ] | 80 ] |
| 77 outputs = [ | 81 outputs = [ |
| 78 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + | 82 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + |
| 79 "{{source_file_part}}", | 83 "{{source_file_part}}", |
| 80 ] | 84 ] |
| 81 } | 85 } |
| OLD | NEW |