2b5989005c
Adds a "viewer" option to the build system that brings in tooling code and sample code. Adds a very simple "MakeSlide" binding that knows how to create the WavyPathText sample slide. Adds viewer.html with code to animate viewer slides. This can hopefully be the starting point for future work on bringing viewer to CanvasKit. Change-Id: Ia26e08726384b40b3f544fe8254f430dc9db08db Reviewed-on: https://skia-review.googlesource.com/c/skia/+/278892 Reviewed-by: Kevin Lubick <kjlubick@google.com> Commit-Queue: Chris Dalton <csmartdalton@google.com>
16 lines
306 B
Plaintext
16 lines
306 B
Plaintext
# Copyright 2020 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
component("viewer_wasm") {
|
|
testonly = true
|
|
include_dirs = [ "../.." ]
|
|
sources = [
|
|
"../../tools/viewer/SampleSlide.cpp",
|
|
]
|
|
deps = [
|
|
"../..:samples",
|
|
]
|
|
}
|