aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD.gn
diff options
context:
space:
mode:
authorGravatar Florin Malita <fmalita@chromium.org>2018-06-08 12:25:38 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-06-08 17:45:33 +0000
commit7796f00dcfd09ca52140c4133ddc9bc197b832db (patch)
treeea438f8ab65f69a8d5e1b93c1d759d347a928959 /BUILD.gn
parent61e66867ae10451fd365a676747a2c853bdd723d (diff)
SkJson
For now this is only wired to a bench and a couple of tests. Local numbers, for a ~500KB BM "compressed" json: micros bench 2456.54 json_rapidjson nonrendering 1192.38 json_skjson nonrendering Change-Id: I7b3514f84c7c525d1787722c43ad6095e3692563 Reviewed-on: https://skia-review.googlesource.com/127622 Reviewed-by: Mike Klein <mtklein@google.com> Commit-Queue: Florin Malita <fmalita@chromium.org>
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn5
1 files changed, 5 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 85d6694921..2a832a51b1 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -1391,6 +1391,7 @@ if (skia_enable_tools) {
]
public_deps = [
":gpu_tool_utils", # Test.h #includes headers from this target.
+ "modules/skjson:tests",
]
}
@@ -1405,6 +1406,9 @@ if (skia_enable_tools) {
":skia",
":tool_utils",
]
+ public_deps = [
+ "modules/skjson:bench",
+ ]
}
test_lib("experimental_svg_model") {
@@ -1745,6 +1749,7 @@ if (skia_enable_tools) {
":flags",
":gpu_tool_utils",
":skia",
+ "modules/skjson:fuzz",
"modules/skottie:fuzz",
"//third_party/jsoncpp",
"//third_party/libpng",