• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2019 Google LLC
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6import("../../gn/skia.gni")
7
8config("public_config") {
9  include_dirs = [ "include" ]
10}
11
12static_library("skresources") {
13  import("skresources.gni")
14  public_configs = [ ":public_config" ]
15  public = skia_skresources_public
16  sources = skia_skresources_sources
17  configs += [
18    "../../:skia_private",
19    "../../:skia_library",
20  ]
21  deps = [
22    "../..:skia",
23    "../../experimental/ffmpeg:video_decoder",
24  ]
25}
26