BUILD.gn 696 B

123456789101112131415161718192021222324
  1. # Copyright 2021 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("renderer") {
  5. sources = [
  6. "web_page_metadata_agent.cc",
  7. "web_page_metadata_agent.h",
  8. "web_page_metadata_extraction.cc",
  9. "web_page_metadata_extraction.h",
  10. ]
  11. defines = []
  12. deps = [
  13. "//components/webapps/common",
  14. "//components/webapps/common:mojo_bindings",
  15. "//content/public/renderer",
  16. "//services/service_manager/public/cpp",
  17. "//third_party/blink/public:blink_headers",
  18. "//third_party/blink/public/common:headers",
  19. "//third_party/blink/public/common:headers",
  20. ]
  21. }