OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//testing/test.gni") |
| 6 |
| 7 test("ios_chrome_unittests") { |
| 8 sources = [ |
| 9 "app/safe_mode_util_unittest.cc", |
| 10 "browser/chrome_url_util_unittest.mm", |
| 11 "browser/crash_loop_detection_util_unittest.mm", |
| 12 "browser/favicon/large_icon_cache_unittest.cc", |
| 13 "browser/geolocation/CLLocation+XGeoHeaderTest.mm", |
| 14 "browser/geolocation/location_manager_unittest.mm", |
| 15 "browser/geolocation/omnibox_geolocation_local_state_unittest.mm", |
| 16 "browser/install_time_util_unittest.mm", |
| 17 "browser/installation_notifier_unittest.mm", |
| 18 "browser/metrics/ios_chrome_metrics_service_accessor_unittest.cc", |
| 19 "browser/metrics/ios_chrome_stability_metrics_provider_unittest.cc", |
| 20 "browser/metrics/ios_stability_metrics_provider_unittest.mm", |
| 21 "browser/metrics/previous_session_info_unittest.mm", |
| 22 "browser/net/cookie_util_unittest.mm", |
| 23 "browser/net/image_fetcher_unittest.mm", |
| 24 "browser/net/metrics_network_client_unittest.mm", |
| 25 "browser/net/retryable_url_fetcher_unittest.mm", |
| 26 "browser/signin/chrome_identity_service_observer_bridge_unittest.mm", |
| 27 "browser/signin/gaia_auth_fetcher_ios_unittest.mm", |
| 28 "browser/snapshots/lru_cache_unittest.mm", |
| 29 "browser/snapshots/snapshot_cache_unittest.mm", |
| 30 "browser/snapshots/snapshots_util_unittest.mm", |
| 31 "browser/translate/translate_service_ios_unittest.cc", |
| 32 "browser/ui/commands/set_up_for_testing_command_unittest.mm", |
| 33 "browser/ui/keyboard/UIKeyCommand+ChromeTest.mm", |
| 34 "browser/ui/keyboard/hardware_keyboard_watcher_unittest.mm", |
| 35 "browser/ui/native_content_controller_unittest.mm", |
| 36 "browser/ui/ui_util_unittest.mm", |
| 37 "browser/ui/uikit_ui_util_unittest.mm", |
| 38 "browser/update_client/ios_chrome_update_query_params_delegate_unittest.cc", |
| 39 "browser/web_resource/web_resource_util_unittest.cc", |
| 40 "common/string_util_unittest.mm", |
| 41 ] |
| 42 |
| 43 deps = [ |
| 44 "//base", |
| 45 "//base/test:test_support", |
| 46 "//base:prefs_test_support", |
| 47 "//components/bookmarks/test", |
| 48 "//components/enhanced_bookmarks:test_support", |
| 49 "//components/favicon_base", |
| 50 "//components/metrics", |
| 51 "//components/metrics:test_support", |
| 52 "//components/signin/core/browser:test_support", |
| 53 "//components/signin/ios/browser:test_support", |
| 54 "//components/sync_driver:test_support", |
| 55 "//components/update_client", |
| 56 "//components/version_info", |
| 57 "//ios/chrome/app", |
| 58 "//ios/chrome/browser", |
| 59 "//ios/chrome/browser:test_support", |
| 60 "//ios/chrome/common", |
| 61 "//ios/public/test", |
| 62 "//ios/web", |
| 63 "//ios/web:test_support", |
| 64 "//net:test_support", |
| 65 "//skia", |
| 66 "//testing/gmock", |
| 67 "//testing/gtest", |
| 68 "//third_party/ocmock", |
| 69 "//ui/gfx:test_support", |
| 70 ] |
| 71 |
| 72 # TODO(crbug.com/546283): once bundle resources are supported add code |
| 73 # corresponding to the following gyp fragment: |
| 74 # |
| 75 # 'mac_bundle_resources': [ |
| 76 # 'browser/ui/native_content_controller_test.xib' |
| 77 # ], |
| 78 # 'actions': [ |
| 79 # { |
| 80 # 'action_name': 'copy_ios_chrome_test_data', |
| 81 # 'variables': { |
| 82 # 'test_data_files': [ |
| 83 # 'test/data/webdata/bookmarkimages', |
| 84 # ], |
| 85 # 'test_data_prefix': 'ios/chrome', |
| 86 # }, |
| 87 # 'includes': [ '../../build/copy_test_data_ios.gypi' ] |
| 88 # }, |
| 89 # ], |
| 90 # 'includes': ['ios_chrome_resources_bundle.gypi'], |
| 91 } |
OLD | NEW |