| 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", |
| 11 "navigation_egtest.mm", | 11 "navigation_egtest.mm", |
| 12 "page_state_egtest.mm", | 12 "page_state_egtest.mm", |
| 13 "pdf_egtest.mm", |
| 13 "plugin_placeholder_egtest.mm", | 14 "plugin_placeholder_egtest.mm", |
| 14 ] | 15 ] |
| 15 | 16 |
| 16 deps = [ | 17 deps = [ |
| 17 "//base", | 18 "//base", |
| 18 "//base/test:test_support", | 19 "//base/test:test_support", |
| 20 "//ios/testing/earl_grey:earl_grey_support", |
| 21 "//ios/web:earl_grey_test_support", |
| 19 "//ios/web:test_support", | 22 "//ios/web:test_support", |
| 20 "//ios/web/shell", | 23 "//ios/web/shell", |
| 21 "//ios/web/shell/test:earl_grey_test_support", | 24 "//ios/web/shell/test:earl_grey_test_support", |
| 22 "//url:url", | 25 "//url:url", |
| 23 | 26 |
| 24 # All shared libraries must have the sanitizer deps to properly link in | 27 # All shared libraries must have the sanitizer deps to properly link in |
| 25 # asan mode (this target will be empty in other cases). | 28 # asan mode (this target will be empty in other cases). |
| 26 "//build/config/sanitizers:deps", | 29 "//build/config/sanitizers:deps", |
| 27 ] | 30 ] |
| 28 | 31 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "earl_grey/shell_matchers.h", | 63 "earl_grey/shell_matchers.h", |
| 61 "earl_grey/shell_matchers.mm", | 64 "earl_grey/shell_matchers.mm", |
| 62 ] | 65 ] |
| 63 } | 66 } |
| 64 | 67 |
| 65 bundle_data("bundle") { | 68 bundle_data("bundle") { |
| 66 visibility = [ ":ios_web_shell_test_host" ] | 69 visibility = [ ":ios_web_shell_test_host" ] |
| 67 sources = [ | 70 sources = [ |
| 68 "http_server_files/basic_navigation_test.html", | 71 "http_server_files/basic_navigation_test.html", |
| 69 "http_server_files/tall_page.html", | 72 "http_server_files/tall_page.html", |
| 73 "http_server_files/testpage.pdf", |
| 70 ] | 74 ] |
| 71 outputs = [ | 75 outputs = [ |
| 72 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + | 76 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + |
| 73 "{{source_file_part}}", | 77 "{{source_file_part}}", |
| 74 ] | 78 ] |
| 75 } | 79 } |
| OLD | NEW |