summaryrefslogtreecommitdiff
path: root/chromium/components/safe_browsing/web_ui/BUILD.gn
blob: d695729c39b6547fad2ce652c66a89ad2b7cd339 (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
# Copyright 2017 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_ui") {
  sources = [
    "safe_browsing_ui.cc",
    "safe_browsing_ui.h",
  ]

  deps = [
    ":constants",
    "//base",
    "//components/resources:components_resources_grit",
    "//components/resources:components_scaled_resources_grit",
    "//components/safe_browsing:features",
    "//components/safe_browsing/common:safe_browsing_prefs",
    "//components/strings:components_strings_grit",
    "//components/user_prefs:user_prefs",
    "//content/public/browser",
    "//net",
    "//url",
  ]
}

static_library("constants") {
  sources = [
    "constants.cc",
    "constants.h",
  ]
}