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("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 bundle_data("ios_chrome_unittests_bundle_data") { | 8 bundle_data("ios_chrome_unittests_bundle_data") { |
9 testonly = true | 9 testonly = true |
10 sources = [ | 10 sources = [ |
11 "test/data/webdata/bookmarkimages/image.jpg", | 11 "test/data/webdata/bookmarkimages/image.jpg", |
12 "test/data/webdata/bookmarkimages/index.html", | 12 "test/data/webdata/bookmarkimages/index.html", |
13 ] | 13 ] |
14 outputs = [ | 14 outputs = [ |
15 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + | 15 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + |
16 "{{source_file_part}}", | 16 "{{source_file_part}}", |
17 ] | 17 ] |
18 } | 18 } |
19 | 19 |
20 bundle_data_xib("native_content_controller_test_xib") { | 20 bundle_data_xib("native_content_controller_test_xib") { |
21 testonly = true | 21 testonly = true |
22 source = "browser/ui/native_content_controller_test.xib" | 22 source = "browser/ui/native_content_controller_test.xib" |
23 } | 23 } |
24 | 24 |
25 test("ios_chrome_unittests") { | 25 test("ios_chrome_unittests") { |
26 sources = [ | 26 sources = [ |
| 27 "app/application_delegate/memory_warning_helper_unittest.mm", |
27 "app/safe_mode_util_unittest.cc", | 28 "app/safe_mode_util_unittest.cc", |
28 "browser/chrome_url_util_unittest.mm", | 29 "browser/chrome_url_util_unittest.mm", |
29 "browser/crash_loop_detection_util_unittest.mm", | 30 "browser/crash_loop_detection_util_unittest.mm", |
30 "browser/favicon/large_icon_cache_unittest.cc", | 31 "browser/favicon/large_icon_cache_unittest.cc", |
31 "browser/geolocation/CLLocation+XGeoHeaderTest.mm", | 32 "browser/geolocation/CLLocation+XGeoHeaderTest.mm", |
32 "browser/geolocation/location_manager_unittest.mm", | 33 "browser/geolocation/location_manager_unittest.mm", |
33 "browser/geolocation/omnibox_geolocation_local_state_unittest.mm", | 34 "browser/geolocation/omnibox_geolocation_local_state_unittest.mm", |
34 "browser/install_time_util_unittest.mm", | 35 "browser/install_time_util_unittest.mm", |
35 "browser/installation_notifier_unittest.mm", | 36 "browser/installation_notifier_unittest.mm", |
36 "browser/metrics/ios_chrome_metrics_service_accessor_unittest.cc", | 37 "browser/metrics/ios_chrome_metrics_service_accessor_unittest.cc", |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 "//ios/web", | 89 "//ios/web", |
89 "//ios/web:test_support", | 90 "//ios/web:test_support", |
90 "//net:test_support", | 91 "//net:test_support", |
91 "//skia", | 92 "//skia", |
92 "//testing/gmock", | 93 "//testing/gmock", |
93 "//testing/gtest", | 94 "//testing/gtest", |
94 "//third_party/ocmock", | 95 "//third_party/ocmock", |
95 "//ui/gfx:test_support", | 96 "//ui/gfx:test_support", |
96 ] | 97 ] |
97 } | 98 } |
OLD | NEW |