BUILD.gn 716 B

123456789101112131415161718192021222324252627
  1. # Copyright 2020 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. source_set("browser") {
  5. sources = [
  6. "js_communication_host.cc",
  7. "js_communication_host.h",
  8. "js_to_browser_messaging.cc",
  9. "js_to_browser_messaging.h",
  10. "web_message.cc",
  11. "web_message.h",
  12. "web_message_host.h",
  13. "web_message_host_factory.h",
  14. "web_message_reply_proxy.h",
  15. ]
  16. deps = [
  17. "//base",
  18. "//components/js_injection/common",
  19. "//components/js_injection/common:common_mojom",
  20. "//content/public/browser",
  21. "//mojo/public/cpp/bindings",
  22. "//third_party/blink/public/common",
  23. "//url",
  24. ]
  25. }