| 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 = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "redirect_egtest.mm", | 24 "redirect_egtest.mm", |
| 25 ] | 25 ] |
| 26 | 26 |
| 27 deps = [ | 27 deps = [ |
| 28 ":earl_grey_test_support", | 28 ":earl_grey_test_support", |
| 29 "//base", | 29 "//base", |
| 30 "//base/test:test_support", | 30 "//base/test:test_support", |
| 31 "//ios/testing:ios_test_support", | 31 "//ios/testing:ios_test_support", |
| 32 "//ios/testing/earl_grey:earl_grey_support", | 32 "//ios/testing/earl_grey:earl_grey_support", |
| 33 "//ios/web:earl_grey_test_support", | 33 "//ios/web:earl_grey_test_support", |
| 34 "//ios/web:test_support", | 34 "//ios/web/public/test", |
| 35 "//ios/web/public/test/fakes", |
| 36 "//ios/web/public/test/http_server", |
| 35 "//ios/web/shell", | 37 "//ios/web/shell", |
| 36 "//net", | 38 "//net", |
| 37 "//url", | 39 "//url", |
| 38 | 40 |
| 39 # All shared libraries must have the sanitizer deps to properly link in | 41 # All shared libraries must have the sanitizer deps to properly link in |
| 40 # asan mode (this target will be empty in other cases). | 42 # asan mode (this target will be empty in other cases). |
| 41 "//build/config:exe_and_shlib_deps", | 43 "//build/config:exe_and_shlib_deps", |
| 42 ] | 44 ] |
| 43 | 45 |
| 44 bundle_deps = [ ":bundle" ] | 46 bundle_deps = [ ":bundle" ] |
| 45 | 47 |
| 46 configs += [ "//build/config/compiler:enable_arc" ] | 48 configs += [ "//build/config/compiler:enable_arc" ] |
| 47 | 49 |
| 48 assert_no_deps = ios_assert_no_deps | 50 assert_no_deps = ios_assert_no_deps |
| 49 } | 51 } |
| 50 | 52 |
| 51 source_set("earl_grey_test_support") { | 53 source_set("earl_grey_test_support") { |
| 52 testonly = true | 54 testonly = true |
| 53 | 55 |
| 54 deps = [ | 56 deps = [ |
| 55 "//base", | 57 "//base", |
| 56 "//base/test:test_support", | 58 "//base/test:test_support", |
| 57 "//ios/testing:ios_test_support", | 59 "//ios/testing:ios_test_support", |
| 58 "//ios/testing/earl_grey:earl_grey_support", | 60 "//ios/testing/earl_grey:earl_grey_support", |
| 59 "//ios/third_party/earl_grey", | 61 "//ios/third_party/earl_grey", |
| 60 "//ios/web", | 62 "//ios/web", |
| 61 "//ios/web:earl_grey_test_support", | 63 "//ios/web:earl_grey_test_support", |
| 62 "//ios/web:test_support", | 64 "//ios/web/public/test", |
| 65 "//ios/web/public/test/http_server", |
| 63 "//ios/web/shell", | 66 "//ios/web/shell", |
| 64 "//url", | 67 "//url", |
| 65 ] | 68 ] |
| 66 | 69 |
| 67 public_deps = [ | 70 public_deps = [ |
| 68 "//build/config/ios:xctest", | 71 "//build/config/ios:xctest", |
| 69 ] | 72 ] |
| 70 | 73 |
| 71 sources = [ | 74 sources = [ |
| 72 "app/navigation_test_util.h", | 75 "app/navigation_test_util.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 93 sources = [ | 96 sources = [ |
| 94 "http_server_files/basic_navigation_test.html", | 97 "http_server_files/basic_navigation_test.html", |
| 95 "http_server_files/tall_page.html", | 98 "http_server_files/tall_page.html", |
| 96 "http_server_files/testpage.pdf", | 99 "http_server_files/testpage.pdf", |
| 97 ] | 100 ] |
| 98 outputs = [ | 101 outputs = [ |
| 99 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + | 102 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + |
| 100 "{{source_file_part}}", | 103 "{{source_file_part}}", |
| 101 ] | 104 ] |
| 102 } | 105 } |
| OLD | NEW |