2019-11-25 18:24:59 +00:00
|
|
|
# Copyright 2019 Google LLC
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
import("../../gn/skia.gni")
|
|
|
|
|
|
|
|
config("public_config") {
|
|
|
|
include_dirs = [ "include" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
static_library("skresources") {
|
|
|
|
import("skresources.gni")
|
|
|
|
public_configs = [ ":public_config" ]
|
|
|
|
public = skia_skresources_public
|
|
|
|
sources = skia_skresources_sources
|
2020-12-03 17:51:28 +00:00
|
|
|
configs += [
|
|
|
|
"../../:skia_private",
|
|
|
|
"../../:skia_library",
|
|
|
|
]
|
2020-04-24 15:10:27 +00:00
|
|
|
deps = [
|
|
|
|
"../..:skia",
|
|
|
|
"../../experimental/ffmpeg:video_decoder",
|
|
|
|
]
|
2019-11-25 18:24:59 +00:00
|
|
|
}
|