chromium/components/guest_view/renderer/BUILD.gn

# Copyright 2015 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# Currently, GuestViews are only used by extensions, so we have this
# assert to prevent the accidental building of GuestViews on mobile
# platforms. If you're now using GuestViews on mobile, go ahead and
# remove this assert.
assert(!is_android && !is_ios)

static_library("renderer") {
  sources = [
    "guest_view_container.cc",
    "guest_view_container.h",
    "guest_view_request.cc",
    "guest_view_request.h",
  ]

  deps = [
    "//base",
    "//components/guest_view/common",
    "//components/guest_view/common:mojom",
    "//content/public/common",
    "//content/public/renderer",
    "//ipc",
    "//third_party/blink/public:blink",
    "//v8",
  ]
}