2021-09-21 13:57:43 +00:00
|
|
|
# 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.
|
2021-09-21 15:59:57 +00:00
|
|
|
_src = get_path_info("../experimental/graphite/src", "abspath")
|
|
|
|
_include = get_path_info("../experimental/graphite/include", "abspath")
|
2021-09-21 13:57:43 +00:00
|
|
|
|
2021-09-21 15:59:57 +00:00
|
|
|
skia_graphite_public = [ "$_include/Context.h" ]
|
2021-09-21 13:57:43 +00:00
|
|
|
|
2021-09-21 15:59:57 +00:00
|
|
|
skia_graphite_sources = [
|
2021-09-21 13:57:43 +00:00
|
|
|
"$_include/Context.h",
|
2021-09-21 15:59:57 +00:00
|
|
|
"$_include/SkStuff.h",
|
2021-09-22 18:44:20 +00:00
|
|
|
"$_src/BoundsManager.h",
|
2021-09-21 13:57:43 +00:00
|
|
|
"$_src/Context.cpp",
|
|
|
|
"$_src/Device.cpp",
|
|
|
|
"$_src/Device.h",
|
2021-09-22 18:44:20 +00:00
|
|
|
"$_src/DrawCommandList.h",
|
2021-09-22 20:07:30 +00:00
|
|
|
"$_src/Image_Graphite.cpp",
|
|
|
|
"$_src/Image_Graphite.h",
|
2021-09-21 20:34:35 +00:00
|
|
|
"$_src/SDCTask.cpp",
|
|
|
|
"$_src/SDCTask.h",
|
2021-09-21 13:57:43 +00:00
|
|
|
"$_src/SkStuff.cpp",
|
2021-09-21 20:34:35 +00:00
|
|
|
"$_src/SurfaceDrawContext.cpp",
|
|
|
|
"$_src/SurfaceDrawContext.h",
|
2021-09-21 19:34:36 +00:00
|
|
|
"$_src/Surface_Graphite.cpp",
|
|
|
|
"$_src/Surface_Graphite.h",
|
2021-09-21 20:34:35 +00:00
|
|
|
"$_src/Task.cpp",
|
|
|
|
"$_src/Task.h",
|
2021-09-21 13:57:43 +00:00
|
|
|
]
|