• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2014 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5static_library("browser") {
6  output_name = "visitedlink_browser"
7  sources = [
8    "visitedlink_delegate.h",
9    "visitedlink_event_listener.cc",
10    "visitedlink_event_listener.h",
11    "visitedlink_master.cc",
12    "visitedlink_master.h",
13  ]
14
15  deps = [
16    "//base",
17    "//components/visitedlink/common",
18    "//content/public/browser",
19    "//content/public/common",
20  ]
21}
22