| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/public/provider/chrome/browser/build_config.gni") | 6 import("//ios/public/provider/chrome/browser/build_config.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 # All tests needs to be listed in that target to be built as part of | 9 # All tests needs to be listed in that target to be built as part of |
| 10 # "gn_all" target (i.e. by the bots). | 10 # "gn_all" target (i.e. by the bots). |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 "//components/network_time", | 41 "//components/network_time", |
| 42 "//components/prefs", | 42 "//components/prefs", |
| 43 "//components/prefs:test_support", | 43 "//components/prefs:test_support", |
| 44 "//ios/chrome/browser", | 44 "//ios/chrome/browser", |
| 45 "//ios/chrome/browser/browser_state", | 45 "//ios/chrome/browser/browser_state", |
| 46 "//ios/chrome/browser/browser_state:browser_state_impl", | 46 "//ios/chrome/browser/browser_state:browser_state_impl", |
| 47 "//ios/chrome/browser/prefs:browser_prefs", | 47 "//ios/chrome/browser/prefs:browser_prefs", |
| 48 "//ios/public/provider/chrome/browser", | 48 "//ios/public/provider/chrome/browser", |
| 49 "//ios/public/provider/chrome/browser:test_support", | 49 "//ios/public/provider/chrome/browser:test_support", |
| 50 "//ios/web", | 50 "//ios/web", |
| 51 "//ios/web:test_support", | 51 "//ios/web/public/test", |
| 52 "//net", | 52 "//net", |
| 53 "//testing/gmock", | 53 "//testing/gmock", |
| 54 "//testing/gtest", | 54 "//testing/gtest", |
| 55 "//ui/base", | 55 "//ui/base", |
| 56 "//url", | 56 "//url", |
| 57 ] | 57 ] |
| 58 } | 58 } |
| 59 | 59 |
| 60 source_set("run_all_unittests") { | 60 source_set("run_all_unittests") { |
| 61 testonly = true | 61 testonly = true |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 "//ios/chrome/search_widget_extension:unit_tests", | 193 "//ios/chrome/search_widget_extension:unit_tests", |
| 194 "//ios/chrome/test/base:unit_tests", | 194 "//ios/chrome/test/base:unit_tests", |
| 195 "//ios/shared/chrome/browser/ui/broadcaster:unit_tests", | 195 "//ios/shared/chrome/browser/ui/broadcaster:unit_tests", |
| 196 "//ios/shared/chrome/browser/ui/browser_list:unit_tests", | 196 "//ios/shared/chrome/browser/ui/browser_list:unit_tests", |
| 197 "//ios/shared/chrome/browser/ui/commands:unit_tests", | 197 "//ios/shared/chrome/browser/ui/commands:unit_tests", |
| 198 "//ios/shared/chrome/browser/ui/coordinators:unit_tests", | 198 "//ios/shared/chrome/browser/ui/coordinators:unit_tests", |
| 199 ] | 199 ] |
| 200 | 200 |
| 201 assert_no_deps = ios_assert_no_deps | 201 assert_no_deps = ios_assert_no_deps |
| 202 } | 202 } |
| OLD | NEW |