mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
93 lines
3.1 KiB
Plaintext
93 lines
3.1 KiB
Plaintext
|
# Copyright 2016 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
source_set("test_support") {
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
testonly = true
|
||
|
sources = [
|
||
|
"bookmarks_test_util.h",
|
||
|
"bookmarks_test_util.mm",
|
||
|
"chrome_test_util.h",
|
||
|
"chrome_test_util.mm",
|
||
|
"histogram_test_util.h",
|
||
|
"histogram_test_util.mm",
|
||
|
"history_test_util.h",
|
||
|
"history_test_util.mm",
|
||
|
"navigation_test_util.h",
|
||
|
"navigation_test_util.mm",
|
||
|
"password_test_util.h",
|
||
|
"password_test_util.mm",
|
||
|
"settings_test_util.h",
|
||
|
"settings_test_util.mm",
|
||
|
"signin_test_util.h",
|
||
|
"signin_test_util.mm",
|
||
|
"stack_view_test_util.h",
|
||
|
"stack_view_test_util.mm",
|
||
|
"static_html_view_test_util.h",
|
||
|
"static_html_view_test_util.mm",
|
||
|
"sync_test_util.h",
|
||
|
"sync_test_util.mm",
|
||
|
"tab_test_util.h",
|
||
|
"tab_test_util.mm",
|
||
|
"web_view_interaction_test_util.h",
|
||
|
"web_view_interaction_test_util.mm",
|
||
|
]
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//base/test:test_support",
|
||
|
"//components/autofill/core/browser",
|
||
|
"//components/bookmarks/browser",
|
||
|
"//components/browser_sync",
|
||
|
"//components/browsing_data/core",
|
||
|
"//components/content_settings/core/browser",
|
||
|
"//components/content_settings/core/common",
|
||
|
"//components/history/core/browser",
|
||
|
"//components/keyed_service/core",
|
||
|
"//components/metrics",
|
||
|
"//components/prefs",
|
||
|
"//components/signin/core/browser",
|
||
|
"//components/sync:test_support_fake_server",
|
||
|
"//google_apis",
|
||
|
"//ios/chrome/app:app_internal",
|
||
|
"//ios/chrome/app/application_delegate:application_delegate_internal",
|
||
|
"//ios/chrome/app/application_delegate:test_support",
|
||
|
"//ios/chrome/browser",
|
||
|
"//ios/chrome/browser/autofill",
|
||
|
"//ios/chrome/browser/bookmarks",
|
||
|
"//ios/chrome/browser/browser_state",
|
||
|
"//ios/chrome/browser/browser_state:browser_state_impl",
|
||
|
"//ios/chrome/browser/browsing_data",
|
||
|
"//ios/chrome/browser/content_settings",
|
||
|
"//ios/chrome/browser/history",
|
||
|
"//ios/chrome/browser/infobars",
|
||
|
"//ios/chrome/browser/metrics",
|
||
|
"//ios/chrome/browser/metrics:metrics_internal",
|
||
|
"//ios/chrome/browser/signin",
|
||
|
"//ios/chrome/browser/sync",
|
||
|
"//ios/chrome/browser/tabs",
|
||
|
"//ios/chrome/browser/ui:ui_internal",
|
||
|
"//ios/chrome/browser/ui:ui_util",
|
||
|
"//ios/chrome/browser/ui/authentication:authentication_ui",
|
||
|
"//ios/chrome/browser/ui/commands",
|
||
|
"//ios/chrome/browser/ui/main",
|
||
|
"//ios/chrome/browser/ui/ntp:ntp_controller",
|
||
|
"//ios/chrome/browser/ui/settings",
|
||
|
"//ios/chrome/browser/ui/settings:test_support",
|
||
|
"//ios/chrome/browser/ui/stack_view",
|
||
|
"//ios/chrome/browser/ui/static_content",
|
||
|
"//ios/chrome/browser/ui/tab_switcher",
|
||
|
"//ios/chrome/browser/ui/tabs",
|
||
|
"//ios/chrome/browser/ui/util",
|
||
|
"//ios/public/provider/chrome/browser",
|
||
|
"//ios/public/provider/chrome/browser/signin:test_support",
|
||
|
"//ios/testing:ios_test_support",
|
||
|
"//ios/web",
|
||
|
"//ios/web/public/test",
|
||
|
"//net",
|
||
|
"//net:test_support",
|
||
|
"//third_party/breakpad:client",
|
||
|
"//url",
|
||
|
]
|
||
|
}
|