blob: 12b3d5b543f0e0f7ae27cd37dadb515be21f5119 [file] [log] [blame]
Brian Osman85bf9312019-11-25 13:24:59 -05001# 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
Florin Malita38921ca2020-12-03 12:51:28 -050017 configs += [
18 "../../:skia_private",
19 "../../:skia_library",
20 ]
Florin Malita123e3b82020-04-24 11:10:27 -040021 deps = [
22 "../..:skia",
23 "../../experimental/ffmpeg:video_decoder",
24 ]
Brian Osman85bf9312019-11-25 13:24:59 -050025}