summaryrefslogtreecommitdiff
path: root/chromium/components/autofill/core/common/BUILD.gn
blob: 8e15cd72652455c446c18840aafecec2f885a461 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Copyright 2014 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.

static_library("common") {
  sources = [
    "autofill_clock.cc",
    "autofill_clock.h",
    "autofill_constants.cc",
    "autofill_constants.h",
    "autofill_data_validation.cc",
    "autofill_data_validation.h",
    "autofill_features.cc",
    "autofill_features.h",
    "autofill_l10n_util.cc",
    "autofill_l10n_util.h",
    "autofill_pref_names.cc",
    "autofill_pref_names.h",
    "autofill_regex_constants.cc",
    "autofill_regex_constants.h",
    "autofill_regexes.cc",
    "autofill_regexes.h",
    "autofill_switches.cc",
    "autofill_switches.h",
    "autofill_util.cc",
    "autofill_util.h",
    "form_data.cc",
    "form_data.h",
    "form_data_predictions.cc",
    "form_data_predictions.h",
    "form_field_data.cc",
    "form_field_data.h",
    "form_field_data_predictions.cc",
    "form_field_data_predictions.h",
    "password_form.cc",
    "password_form.h",
    "password_form_field_prediction_map.h",
    "password_form_fill_data.cc",
    "password_form_fill_data.h",
    "password_form_generation_data.cc",
    "password_form_generation_data.h",
    "password_generation_util.cc",
    "password_generation_util.h",
    "save_password_progress_logger.cc",
    "save_password_progress_logger.h",
    "signatures_util.cc",
    "signatures_util.h",
    "submission_source.h",
  ]

  deps = [
    "//base",
    "//base:i18n",
    "//components/variations",
    "//url",
  ]

  if (is_android) {
    # deps += [ 'autofill_jni_headers' ]  TODO(GYP)
  }

  configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "autofill_l10n_util_unittest.cc",
    "autofill_regexes_unittest.cc",
    "autofill_util_unittest.cc",
    "form_data_unittest.cc",
    "form_field_data_unittest.cc",
    "password_form_fill_data_unittest.cc",
    "save_password_progress_logger_unittest.cc",
  ]

  deps = [
    ":common",
    "//base",
    "//base:i18n",
    "//base/test:test_support",
    "//testing/gmock",
    "//testing/gtest",
    "//url",
  ]
}