summaryrefslogtreecommitdiff
path: root/chromium/components/password_manager/core/browser/form_parsing/BUILD.gn
blob: 7c5e844c48036a84a50a9183df2cc02d8f022b9c (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
# Copyright 2018 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("//build/config/sanitizers/sanitizers.gni")

static_library("form_parsing") {
  sources = [
    # TODO(https://crbug.com/831123): Make compilation of ios_form_parser only for iOS, when it is not needed for experimentation anymore.
    "ios_form_parser.cc",
    "ios_form_parser.h",
  ]

  deps = [
    "//base",
    "//components/autofill/core/common",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "ios_form_parser_unittest.cc",
  ]

  deps = [
    ":form_parsing",
    "//base",
    "//components/autofill/core/common",
    "//testing/gmock",
    "//testing/gtest",
    "//url",
  ]
}