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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 test("ios_chrome_unittests") { | 7 test("ios_chrome_unittests") { |
8 sources = [ | 8 sources = [ |
9 "app/safe_mode_util_unittest.cc", | 9 "app/safe_mode_util_unittest.cc", |
10 "browser/chrome_url_util_unittest.mm", | 10 "browser/chrome_url_util_unittest.mm", |
(...skipping 24 matching lines...) Expand all Loading... |
35 "browser/ui/native_content_controller_unittest.mm", | 35 "browser/ui/native_content_controller_unittest.mm", |
36 "browser/ui/ui_util_unittest.mm", | 36 "browser/ui/ui_util_unittest.mm", |
37 "browser/ui/uikit_ui_util_unittest.mm", | 37 "browser/ui/uikit_ui_util_unittest.mm", |
38 "browser/update_client/ios_chrome_update_query_params_delegate_unittest.cc", | 38 "browser/update_client/ios_chrome_update_query_params_delegate_unittest.cc", |
39 "browser/web_resource/web_resource_util_unittest.cc", | 39 "browser/web_resource/web_resource_util_unittest.cc", |
40 "common/string_util_unittest.mm", | 40 "common/string_util_unittest.mm", |
41 ] | 41 ] |
42 | 42 |
43 deps = [ | 43 deps = [ |
44 "//base", | 44 "//base", |
45 "//base:prefs_test_support", | |
46 "//base/test:test_support", | 45 "//base/test:test_support", |
47 "//components/bookmarks/test", | 46 "//components/bookmarks/test", |
48 "//components/favicon_base", | 47 "//components/favicon_base", |
49 "//components/metrics", | 48 "//components/metrics", |
50 "//components/metrics:test_support", | 49 "//components/metrics:test_support", |
| 50 "//components/prefs:test_support", |
51 "//components/signin/core/browser:test_support", | 51 "//components/signin/core/browser:test_support", |
52 "//components/signin/ios/browser:test_support", | 52 "//components/signin/ios/browser:test_support", |
53 "//components/sync_driver:test_support", | 53 "//components/sync_driver:test_support", |
54 "//components/update_client", | 54 "//components/update_client", |
55 "//components/version_info", | 55 "//components/version_info", |
56 "//ios/chrome/app", | 56 "//ios/chrome/app", |
57 "//ios/chrome/browser", | 57 "//ios/chrome/browser", |
58 "//ios/chrome/browser:test_support", | 58 "//ios/chrome/browser:test_support", |
59 "//ios/chrome/common", | 59 "//ios/chrome/common", |
60 "//ios/public/test", | 60 "//ios/public/test", |
(...skipping 20 matching lines...) Expand all Loading... |
81 # 'test_data_files': [ | 81 # 'test_data_files': [ |
82 # 'test/data/webdata/bookmarkimages', | 82 # 'test/data/webdata/bookmarkimages', |
83 # ], | 83 # ], |
84 # 'test_data_prefix': 'ios/chrome', | 84 # 'test_data_prefix': 'ios/chrome', |
85 # }, | 85 # }, |
86 # 'includes': [ '../../build/copy_test_data_ios.gypi' ] | 86 # 'includes': [ '../../build/copy_test_data_ios.gypi' ] |
87 # }, | 87 # }, |
88 # ], | 88 # ], |
89 # 'includes': ['ios_chrome_resources_bundle.gypi'], | 89 # 'includes': ['ios_chrome_resources_bundle.gypi'], |
90 } | 90 } |
OLD | NEW |