summaryrefslogtreecommitdiffstats
path: root/ios/public/provider/chrome/browser/BUILD.gn
blob: e23994ad95b9e6b78fd370c7f054073312201fa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright 2015 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("browser") {
  sources = [
    "chrome_browser_provider.h",
    "chrome_browser_provider.mm",
    "geolocation_updater_provider.h",
    "geolocation_updater_provider.mm",
    "signin/chrome_identity.h",
    "signin/chrome_identity.mm",
    "signin/chrome_identity_service.h",
    "signin/chrome_identity_service.mm",
    "signin/signin_error_provider.h",
    "signin/signin_error_provider.mm",
    "ui/default_ios_web_view_factory.h",
    "ui/default_ios_web_view_factory.mm",
    "ui/infobar_view_delegate.h",
    "ui/infobar_view_protocol.h",
    "updatable_resource_provider.h",
    "updatable_resource_provider.mm",
  ]

  deps = [
    "//base",
    "//components/autofill/core/browser",
    "//ios/public/provider/web",
    "//ios/web",
  ]
}

source_set("test_support") {
  testonly = true

  sources = [
    "test_chrome_browser_provider.h",
    "test_chrome_browser_provider.mm",
    "test_chrome_provider_initializer.h",
    "test_chrome_provider_initializer.mm",
    "test_updatable_resource_provider.h",
    "test_updatable_resource_provider.mm",
  ]

  deps = [
    ":browser",
    "//base",
    "//components/signin/ios/browser:test_support",
    "//testing/gtest",
  ]
}