BUILD.gn 566 B

123456789101112131415161718192021222324252627
  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. import("//mojo/public/tools/bindings/mojom.gni")
  5. static_library("common") {
  6. sources = [
  7. "visitedlink_common.cc",
  8. "visitedlink_common.h",
  9. ]
  10. public_deps = [ ":interfaces" ]
  11. deps = [
  12. ":interfaces",
  13. "//base",
  14. "//content/public/common",
  15. "//ipc",
  16. "//url",
  17. ]
  18. }
  19. mojom("interfaces") {
  20. sources = [ "visitedlink.mojom" ]
  21. public_deps = [ "//mojo/public/mojom/base" ]
  22. }