| OLD | NEW |
| (Empty) |
| 1 # Copyright 2016 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 source_set("test_support") { | |
| 6 testonly = true | |
| 7 sources = [ | |
| 8 "bookmarks_test_util.h", | |
| 9 "bookmarks_test_util.mm", | |
| 10 "chrome_test_util.h", | |
| 11 "chrome_test_util.mm", | |
| 12 "histogram_test_util.h", | |
| 13 "histogram_test_util.mm", | |
| 14 "history_test_util.h", | |
| 15 "history_test_util.mm", | |
| 16 "navigation_test_util.h", | |
| 17 "navigation_test_util.mm", | |
| 18 "settings_test_util.h", | |
| 19 "settings_test_util.mm", | |
| 20 "signin_test_util.h", | |
| 21 "signin_test_util.mm", | |
| 22 "stack_view_test_util.h", | |
| 23 "stack_view_test_util.mm", | |
| 24 "sync_test_util.h", | |
| 25 "sync_test_util.mm", | |
| 26 "tab_test_util.h", | |
| 27 "tab_test_util.mm", | |
| 28 "web_view_interaction_test_util.h", | |
| 29 "web_view_interaction_test_util.mm", | |
| 30 ] | |
| 31 deps = [ | |
| 32 "//base", | |
| 33 "//base/test:test_support", | |
| 34 "//breakpad:client", | |
| 35 "//components/autofill/core/browser:browser", | |
| 36 "//components/bookmarks/browser:browser", | |
| 37 "//components/browser_sync", | |
| 38 "//components/browsing_data/core", | |
| 39 "//components/content_settings/core/browser:browser", | |
| 40 "//components/content_settings/core/common:common", | |
| 41 "//components/history/core/browser:browser", | |
| 42 "//components/keyed_service/core", | |
| 43 "//components/metrics", | |
| 44 "//components/prefs:prefs", | |
| 45 "//components/signin/core/browser:browser", | |
| 46 "//components/sync:test_support_fake_server", | |
| 47 "//google_apis", | |
| 48 "//ios/chrome/app:app_internal", | |
| 49 "//ios/chrome/app/application_delegate:application_delegate_internal", | |
| 50 "//ios/chrome/app/application_delegate:test_support", | |
| 51 "//ios/chrome/browser", | |
| 52 "//ios/chrome/browser:browser_internal", | |
| 53 "//ios/chrome/browser/autofill", | |
| 54 "//ios/chrome/browser/bookmarks", | |
| 55 "//ios/chrome/browser/browser_state", | |
| 56 "//ios/chrome/browser/browsing_data", | |
| 57 "//ios/chrome/browser/content_settings", | |
| 58 "//ios/chrome/browser/history", | |
| 59 "//ios/chrome/browser/metrics", | |
| 60 "//ios/chrome/browser/metrics:metrics_internal", | |
| 61 "//ios/chrome/browser/signin", | |
| 62 "//ios/chrome/browser/sync", | |
| 63 "//ios/chrome/browser/tabs", | |
| 64 "//ios/chrome/browser/ui:browser_list", | |
| 65 "//ios/chrome/browser/ui:ui_internal", | |
| 66 "//ios/chrome/browser/ui/commands", | |
| 67 "//ios/chrome/browser/ui/main", | |
| 68 "//ios/chrome/browser/ui/ntp:ntp_internal", | |
| 69 "//ios/chrome/browser/ui/stack_view", | |
| 70 "//ios/chrome/browser/ui/tabs", | |
| 71 "//ios/public/provider/chrome/browser", | |
| 72 "//ios/public/provider/chrome/browser/signin:test_support", | |
| 73 "//ios/testing:ios_test_support", | |
| 74 "//ios/web", | |
| 75 "//ios/web:test_support", | |
| 76 "//net", | |
| 77 "//net:test_support", | |
| 78 "//url", | |
| 79 ] | |
| 80 } | |
| OLD | NEW |