579e63af00
Tacking another hierarchy on top of SkSG doesn't work well. Let's start fresh. TBR= Change-Id: Ieb379b57e1a77df3c62048d3be7e81e1429f9b23 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/297807 Reviewed-by: Florin Malita <fmalita@google.com> Commit-Queue: Florin Malita <fmalita@google.com>
24 lines
636 B
Plaintext
24 lines
636 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.
|
|
|
|
# Things are easiest for everyone if these source paths are absolute.
|
|
_src = get_path_info("src", "abspath")
|
|
_include = get_path_info("include", "abspath")
|
|
|
|
skia_skrive_public = [ "$_include/SkRive.h" ]
|
|
|
|
skia_skrive_sources = [
|
|
"$_src/Artboard.cpp",
|
|
"$_src/Component.cpp",
|
|
"$_src/Drawable.cpp",
|
|
"$_src/Node.cpp",
|
|
"$_src/Shape.cpp",
|
|
"$_src/SkRive.cpp",
|
|
"$_src/reader/BinaryReader.cpp",
|
|
"$_src/reader/JsonReader.cpp",
|
|
"$_src/reader/StreamReader.cpp",
|
|
"$_src/reader/StreamReader.h",
|
|
]
|