chromium/components/paint_preview/public/BUILD.gn

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

import("//build/config/features.gni")

assert(use_blink, "Paint Previews are only supported for blink.")

source_set("public") {
  sources = [
    "paint_preview_compositor_client.h",
    "paint_preview_compositor_service.h",
  ]

  public_deps =
      [ "//components/services/paint_preview_compositor/public/mojom" ]

  deps = [
    "//base",
    "//url",
  ]
}