BUILD.gn 830 B

1234567891011121314151617181920212223242526272829
  1. # Copyright 2015 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. # Currently, GuestViews are only used by extensions, so we have this
  5. # assert to prevent the accidental building of GuestViews on mobile
  6. # platforms. If you're now using GuestViews on mobile, go ahead and
  7. # remove this assert.
  8. assert(!is_android && !is_ios)
  9. static_library("renderer") {
  10. sources = [
  11. "guest_view_container.cc",
  12. "guest_view_container.h",
  13. "guest_view_request.cc",
  14. "guest_view_request.h",
  15. ]
  16. deps = [
  17. "//base",
  18. "//components/guest_view/common",
  19. "//components/guest_view/common:mojom",
  20. "//content/public/common",
  21. "//content/public/renderer",
  22. "//ipc",
  23. "//third_party/blink/public:blink",
  24. "//v8",
  25. ]
  26. }