1a4080add1
This should at least get something compiling. Change-Id: I617fd4d6e4f0a3fdd6dedbe66f3a4448bb913b2c Reviewed-on: https://skia-review.googlesource.com/c/skia/+/450976 Reviewed-by: Greg Daniel <egdaniel@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
20 lines
536 B
Plaintext
20 lines
536 B
Plaintext
# Copyright 2021 Google LLC
|
|
#
|
|
# 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("../experimental/sktbd/src", "abspath")
|
|
_include = get_path_info("../experimental/sktbd/include", "abspath")
|
|
|
|
skia_tbd_public = [ "$_include/Context.h" ]
|
|
|
|
skia_tbd_sources = [
|
|
"$_include/Context.h",
|
|
"$_src/Context.cpp",
|
|
"$_src/Device.cpp",
|
|
"$_src/Device.h",
|
|
"$_src/SkStuff.cpp",
|
|
"$_src/SkStuff.h",
|
|
]
|