| 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 group("all_tests") { | 8 group("all_tests") { |
| 9 testonly = true | 9 testonly = true |
| 10 deps = [ | 10 deps = [ |
| 11 ":ios_web_shell_egtests", | 11 ":ios_web_shell_egtests", |
| 12 ] | 12 ] |
| 13 } | 13 } |
| 14 | 14 |
| 15 ios_eg_test("ios_web_shell_egtests") { | 15 ios_eg_test("ios_web_shell_egtests") { |
| 16 sources = [ | 16 sources = [ |
| 17 "context_menu_egtest.mm", | 17 "context_menu_egtest.mm", |
| 18 "meta_tags_egtest.mm", | 18 "meta_tags_egtest.mm", |
| 19 "navigation_egtest.mm", | 19 "navigation_egtest.mm", |
| 20 "page_state_egtest.mm", | 20 "page_state_egtest.mm", |
| 21 "pdf_egtest.mm", | 21 "pdf_egtest.mm", |
| 22 "plugin_placeholder_egtest.mm", | 22 "plugin_placeholder_egtest.mm", |
| 23 "redirect_egtest.mm", | 23 "redirect_egtest.mm", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 deps = [ | 26 deps = [ |
| 27 ":earl_grey_test_support", |
| 27 "//base", | 28 "//base", |
| 28 "//base/test:test_support", | 29 "//base/test:test_support", |
| 29 "//ios/testing:ios_test_support", | 30 "//ios/testing:ios_test_support", |
| 30 "//ios/testing/earl_grey:earl_grey_support", | 31 "//ios/testing/earl_grey:earl_grey_support", |
| 31 "//ios/web:earl_grey_test_support", | 32 "//ios/web:earl_grey_test_support", |
| 32 "//ios/web:test_support", | 33 "//ios/web:test_support", |
| 33 "//ios/web/shell", | 34 "//ios/web/shell", |
| 34 "//ios/web/shell/test:earl_grey_test_support", | 35 "//net", |
| 35 "//net:net", | 36 "//url", |
| 36 "//url:url", | |
| 37 | 37 |
| 38 # All shared libraries must have the sanitizer deps to properly link in | 38 # All shared libraries must have the sanitizer deps to properly link in |
| 39 # asan mode (this target will be empty in other cases). | 39 # asan mode (this target will be empty in other cases). |
| 40 "//build/config/sanitizers:deps", | 40 "//build/config/sanitizers:deps", |
| 41 ] | 41 ] |
| 42 | 42 |
| 43 bundle_deps = [ ":bundle" ] | 43 bundle_deps = [ ":bundle" ] |
| 44 | 44 |
| 45 configs += [ "//build/config/compiler:enable_arc" ] | 45 configs += [ "//build/config/compiler:enable_arc" ] |
| 46 | 46 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 sources = [ | 92 sources = [ |
| 93 "http_server_files/basic_navigation_test.html", | 93 "http_server_files/basic_navigation_test.html", |
| 94 "http_server_files/tall_page.html", | 94 "http_server_files/tall_page.html", |
| 95 "http_server_files/testpage.pdf", | 95 "http_server_files/testpage.pdf", |
| 96 ] | 96 ] |
| 97 outputs = [ | 97 outputs = [ |
| 98 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + | 98 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + |
| 99 "{{source_file_part}}", | 99 "{{source_file_part}}", |
| 100 ] | 100 ] |
| 101 } | 101 } |
| OLD | NEW |