| Index: ios/chrome/test/app/BUILD.gn
|
| diff --git a/ios/chrome/test/app/BUILD.gn b/ios/chrome/test/app/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8b6ccd5ee075466049b8b9d9a43f7ed05cbceb7d
|
| --- /dev/null
|
| +++ b/ios/chrome/test/app/BUILD.gn
|
| @@ -0,0 +1,80 @@
|
| +# 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") {
|
| + 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",
|
| + "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",
|
| + "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",
|
| + "//breakpad:client",
|
| + "//components/autofill/core/browser:browser",
|
| + "//components/bookmarks/browser:browser",
|
| + "//components/browser_sync",
|
| + "//components/browsing_data/core",
|
| + "//components/content_settings/core/browser:browser",
|
| + "//components/content_settings/core/common:common",
|
| + "//components/history/core/browser:browser",
|
| + "//components/keyed_service/core",
|
| + "//components/metrics",
|
| + "//components/prefs:prefs",
|
| + "//components/signin/core/browser: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:browser_internal",
|
| + "//ios/chrome/browser/autofill",
|
| + "//ios/chrome/browser/bookmarks",
|
| + "//ios/chrome/browser/browser_state",
|
| + "//ios/chrome/browser/browsing_data",
|
| + "//ios/chrome/browser/content_settings",
|
| + "//ios/chrome/browser/history",
|
| + "//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:browser_list",
|
| + "//ios/chrome/browser/ui:ui_internal",
|
| + "//ios/chrome/browser/ui/commands",
|
| + "//ios/chrome/browser/ui/main",
|
| + "//ios/chrome/browser/ui/ntp:ntp_internal",
|
| + "//ios/chrome/browser/ui/stack_view",
|
| + "//ios/chrome/browser/ui/tabs",
|
| + "//ios/public/provider/chrome/browser",
|
| + "//ios/public/provider/chrome/browser/signin:test_support",
|
| + "//ios/testing:ios_test_support",
|
| + "//ios/web",
|
| + "//ios/web:test_support",
|
| + "//net",
|
| + "//net:test_support",
|
| + "//url",
|
| + ]
|
| +}
|
|
|