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("//build/config/ios/rules.gni") | 5 import("//build/config/ios/rules.gni") |
6 import("//ios/build/config.gni") | 6 import("//ios/build/config.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 bundle_data("ios_chrome_unittests_bundle_data") { | 9 bundle_data("ios_chrome_unittests_bundle_data") { |
10 testonly = true | 10 testonly = true |
(...skipping 14 matching lines...) Expand all Loading... |
25 } | 25 } |
26 | 26 |
27 bundle_data_xib("native_content_controller_test_xib") { | 27 bundle_data_xib("native_content_controller_test_xib") { |
28 testonly = true | 28 testonly = true |
29 source = "browser/ui/native_content_controller_test.xib" | 29 source = "browser/ui/native_content_controller_test.xib" |
30 } | 30 } |
31 | 31 |
32 test("ios_chrome_unittests") { | 32 test("ios_chrome_unittests") { |
33 sources = [ | 33 sources = [ |
34 "app/application_delegate/memory_warning_helper_unittest.mm", | 34 "app/application_delegate/memory_warning_helper_unittest.mm", |
| 35 "app/deferred_initialization_runner_unittest.mm", |
35 "app/safe_mode_util_unittest.cc", | 36 "app/safe_mode_util_unittest.cc", |
36 "browser/chrome_url_util_unittest.mm", | 37 "browser/chrome_url_util_unittest.mm", |
37 "browser/crash_loop_detection_util_unittest.mm", | 38 "browser/crash_loop_detection_util_unittest.mm", |
38 "browser/favicon/large_icon_cache_unittest.cc", | 39 "browser/favicon/large_icon_cache_unittest.cc", |
39 "browser/geolocation/CLLocation+XGeoHeaderTest.mm", | 40 "browser/geolocation/CLLocation+XGeoHeaderTest.mm", |
40 "browser/geolocation/location_manager_unittest.mm", | 41 "browser/geolocation/location_manager_unittest.mm", |
41 "browser/geolocation/omnibox_geolocation_local_state_unittest.mm", | 42 "browser/geolocation/omnibox_geolocation_local_state_unittest.mm", |
42 "browser/install_time_util_unittest.mm", | 43 "browser/install_time_util_unittest.mm", |
43 "browser/installation_notifier_unittest.mm", | 44 "browser/installation_notifier_unittest.mm", |
44 "browser/ios_chrome_io_thread_unittest.mm", | 45 "browser/ios_chrome_io_thread_unittest.mm", |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 "//testing/gtest", | 129 "//testing/gtest", |
129 "//third_party/google_toolbox_for_mac", | 130 "//third_party/google_toolbox_for_mac", |
130 "//third_party/ocmock", | 131 "//third_party/ocmock", |
131 "//ui/base:base", | 132 "//ui/base:base", |
132 "//ui/gfx:test_support", | 133 "//ui/gfx:test_support", |
133 "//ui/strings:ui_strings", | 134 "//ui/strings:ui_strings", |
134 ] | 135 ] |
135 | 136 |
136 assert_no_deps = ios_assert_no_deps | 137 assert_no_deps = ios_assert_no_deps |
137 } | 138 } |
OLD | NEW |