BUILD.gn 482 B

1234567891011121314151617181920
  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. assert(!is_ios, "Paint Previews are not supported on iOS.")
  5. source_set("public") {
  6. sources = [
  7. "paint_preview_compositor_client.h",
  8. "paint_preview_compositor_service.h",
  9. ]
  10. public_deps =
  11. [ "//components/services/paint_preview_compositor/public/mojom" ]
  12. deps = [
  13. "//base",
  14. "//url",
  15. ]
  16. }