summaryrefslogtreecommitdiff
path: root/chromium/components/web_resource/BUILD.gn
blob: 293ecb5ee37f4562318aed505f01bea3fadc44ff (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
# 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("web_resource") {
  sources = [
    "eula_accepted_notifier.cc",
    "eula_accepted_notifier.h",
    "resource_request_allowed_notifier.cc",
    "resource_request_allowed_notifier.h",
    "web_resource_pref_names.cc",
    "web_resource_pref_names.h",
    "web_resource_service.cc",
    "web_resource_service.h",
  ]

  deps = [
    "//base",
    "//build:branding_buildflags",
    "//components/google/core/common",
    "//components/pref_registry",
    "//components/prefs",
    "//components/version_info",
    "//net",
    "//services/data_decoder/public/cpp",
    "//services/network/public/cpp",
    "//ui/base",
  ]
}

static_library("test_support") {
  sources = [
    "resource_request_allowed_notifier_test_util.cc",
    "resource_request_allowed_notifier_test_util.h",
  ]

  deps = [
    ":web_resource",
    "//base",
    "//services/network/public/cpp",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "eula_accepted_notifier_unittest.cc",
    "resource_request_allowed_notifier_unittest.cc",
    "web_resource_service_unittest.cc",
  ]

  deps = [
    ":test_support",
    ":web_resource",
    "//base",
    "//components/prefs:test_support",
    "//components/version_info",
    "//net:test_support",
    "//services/data_decoder/public/cpp:test_support",
    "//services/network:test_support",
    "//services/network/public/cpp",
    "//testing/gtest",
    "//third_party/icu",
  ]
}