You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
549 B
26 lines
549 B
# 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
|
|
configs += [
|
|
"../../:skia_private",
|
|
"../../:skia_library",
|
|
]
|
|
deps = [
|
|
"../..:skia",
|
|
"../../experimental/ffmpeg:video_decoder",
|
|
]
|
|
}
|