summaryrefslogtreecommitdiff
path: root/chromium/components/visitedlink/renderer/BUILD.gn
blob: e934a66be0fcd542c3904f5be63b4e78c997ed02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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.

assert(!is_ios)

static_library("renderer") {
  sources = [
    "visitedlink_reader.cc",
    "visitedlink_reader.h",
  ]

  deps = [
    "//base",
    "//components/visitedlink/common",
    "//content/public/common",
    "//content/public/renderer",
    "//third_party/blink/public:blink",
  ]
}