| 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", |
| 45 "//base/test:test_support", | 46 "//base/test:test_support", |
| 46 "//base:prefs_test_support", | |
| 47 "//components/bookmarks/test", | 47 "//components/bookmarks/test", |
| 48 "//components/enhanced_bookmarks:test_support", | 48 "//components/enhanced_bookmarks:test_support", |
| 49 "//components/favicon_base", | 49 "//components/favicon_base", |
| 50 "//components/metrics", | 50 "//components/metrics", |
| 51 "//components/metrics:test_support", | 51 "//components/metrics:test_support", |
| 52 "//components/signin/core/browser:test_support", | 52 "//components/signin/core/browser:test_support", |
| 53 "//components/signin/ios/browser:test_support", | 53 "//components/signin/ios/browser:test_support", |
| 54 "//components/sync_driver:test_support", | 54 "//components/sync_driver:test_support", |
| 55 "//components/update_client", | 55 "//components/update_client", |
| 56 "//components/version_info", | 56 "//components/version_info", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 82 # 'test_data_files': [ | 82 # 'test_data_files': [ |
| 83 # 'test/data/webdata/bookmarkimages', | 83 # 'test/data/webdata/bookmarkimages', |
| 84 # ], | 84 # ], |
| 85 # 'test_data_prefix': 'ios/chrome', | 85 # 'test_data_prefix': 'ios/chrome', |
| 86 # }, | 86 # }, |
| 87 # 'includes': [ '../../build/copy_test_data_ios.gypi' ] | 87 # 'includes': [ '../../build/copy_test_data_ios.gypi' ] |
| 88 # }, | 88 # }, |
| 89 # ], | 89 # ], |
| 90 # 'includes': ['ios_chrome_resources_bundle.gypi'], | 90 # 'includes': ['ios_chrome_resources_bundle.gypi'], |
| 91 } | 91 } |
| OLD | NEW |