summaryrefslogtreecommitdiffstats
path: root/components/autofill/ios/browser/BUILD.gn
blob: 91dbed34da0797ddee672061136cd42327078000 (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
# 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.

import("//ios/web/js_compile.gni")

source_set("browser") {
  sources = [
    "autofill_client_ios_bridge.h",
    "autofill_driver_ios.h",
    "autofill_driver_ios.mm",
    "autofill_driver_ios_bridge.h",
    "credit_card_util.h",
    "credit_card_util.mm",
    "form_suggestion.h",
    "form_suggestion.mm",
    "js_autofill_manager.h",
    "js_autofill_manager.mm",
    "js_suggestion_manager.h",
    "js_suggestion_manager.mm",
    "personal_data_manager_observer_bridge.h",
    "personal_data_manager_observer_bridge.mm",
  ]

  deps = [
    ":injected_js",
    "//base",
    "//components/autofill/core/browser",
    "//components/autofill/core/common",
    "//ios/public/provider/web",
    "//ios/web",
    "//ui/gfx/geometry",
  ]
}

js_compile_checked("injected_js") {
  visibility = [ ":browser" ]
  sources = [
    "resources/autofill_controller.js",
    "resources/suggestion_controller.js",
  ]
}