blob: 531f0e0443fabbc093e2050731b7a3d1e2ba0426 [file] [log] [blame]
# Copyright 2018 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
declare_args() {
skia_enable_skjson = true
}
config("public_config") {
if (skia_enable_skjson) {
defines = [ "SK_ENABLE_SKJSON" ]
include_dirs = [ "include" ]
}
}
source_set("skjson") {
if (skia_enable_skjson) {
public_configs = [ ":public_config" ]
public = [
"include/SkJSON.h",
]
sources = [
"src/SkJSON.cpp",
]
configs += [ "../../:skia_private" ]
deps = [
"../..:skia",
]
}
}
source_set("tests") {
if (skia_enable_skjson) {
testonly = true
configs += [
"../..:skia_private",
"../..:tests_config",
]
sources = [
"src/SkJSONTest.cpp",
]
deps = [
":skjson",
"../..:gpu_tool_utils",
"../..:skia",
]
}
}
source_set("bench") {
if (skia_enable_skjson) {
testonly = true
configs += [
"../..:bench_config",
"../..:skia_private",
]
sources = [
"src/SkJSONBench.cpp",
]
deps = [
":skjson",
"../..:skia",
"../../third_party/rapidjson",
]
}
}
source_set("fuzz") {
if (skia_enable_skjson) {
testonly = true
configs += [ "../..:skia_private" ]
sources = [
"src/FuzzSkJSON.cpp",
]
deps = [
":skjson",
"../..:skia",
]
}
}