summaryrefslogtreecommitdiff
path: root/chromium/components/password_manager/core/browser/leak_detection/BUILD.gn
blob: c72439b557c95f881a5824aaf1d7b736bd5b7825 (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Copyright 2019 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("//third_party/libprotobuf-mutator/fuzzable_proto_library.gni")

fuzzable_proto_library("proto") {
  sources = [ "leak_detection_api.proto" ]
}

source_set("leak_detection_interface_headers") {
  sources = [
    "leak_detection_check.h",
    "leak_detection_check_factory.h",
    "leak_detection_delegate_interface.h",
  ]
  deps = [
    "//base",
    "//base/util/type_safety",
    "//url",
  ]
}

source_set("leak_detection") {
  sources = [
    "authenticated_leak_check.cc",
    "authenticated_leak_check.h",
    "bulk_leak_check.h",
    "bulk_leak_check_impl.cc",
    "bulk_leak_check_impl.h",
    "encryption_utils.cc",
    "encryption_utils.h",
    "leak_detection_check.h",
    "leak_detection_check_factory.h",
    "leak_detection_check_factory_impl.cc",
    "leak_detection_check_factory_impl.h",
    "leak_detection_request.cc",
    "leak_detection_request.h",
    "leak_detection_request_factory.cc",
    "leak_detection_request_factory.h",
    "leak_detection_request_utils.cc",
    "leak_detection_request_utils.h",
    "single_lookup_response.cc",
    "single_lookup_response.h",
  ]

  public_deps = [
    ":leak_detection_interface_headers",
    "//services/network/public/cpp",
  ]

  deps = [
    ":proto",
    "//base",
    "//components/password_manager/core/common",
    "//components/signin/public/identity_manager",
    "//third_party/private-join-and-compute/src:ec_commutative_cipher",
    "//url",
  ]
}

source_set("test_support") {
  testonly = true
  sources = [
    "mock_leak_detection_check_factory.cc",
    "mock_leak_detection_check_factory.h",
    "mock_leak_detection_delegate.cc",
    "mock_leak_detection_delegate.h",
    "mock_leak_detection_request_factory.cc",
    "mock_leak_detection_request_factory.h",
  ]
  deps = [
    ":leak_detection",
    "//base/test:test_support",
    "//testing/gmock",
    "//testing/gtest",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "authenticated_leak_check_unittest.cc",
    "bulk_leak_check_impl_unittest.cc",
    "encryption_utils_unittest.cc",
    "leak_detection_check_factory_impl_unittest.cc",
    "leak_detection_request_unittest.cc",
    "leak_detection_request_utils_unittest.cc",
  ]

  deps = [
    ":leak_detection",
    ":proto",
    ":test_support",
    "//base/test:test_support",
    "//components/password_manager/core/common",
    "//components/signin/public/identity_manager:test_support",
    "//services/network:test_support",
    "//testing/gmock",
    "//testing/gtest",
    "//third_party/private-join-and-compute/src:ec_commutative_cipher",
  ]
}

group("fuzzers") {
  deps = [ "//components/password_manager/core/browser/leak_detection/fuzzer" ]
}