BUILD.gn 516 B

123456789101112131415161718192021
  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. static_library("browser") {
  5. sources = [
  6. "visitedlink_delegate.h",
  7. "visitedlink_event_listener.cc",
  8. "visitedlink_event_listener.h",
  9. "visitedlink_writer.cc",
  10. "visitedlink_writer.h",
  11. ]
  12. deps = [
  13. "//base",
  14. "//components/visitedlink/common",
  15. "//content/public/browser",
  16. "//content/public/common",
  17. "//url",
  18. ]
  19. }