a30095d17c
This reverts commit 7479eda3b6
.
Reason for revert: Breaking build
Original change's description:
> ICU API: only in SkParagraph, simplified (relanding reverted).
>
> Reverted commit: https://skia-review.googlesource.com/c/skia/+/296128/
>
> Change-Id: Iaf793bff94a6060579c7d6176d477e598c047be6
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/303261
> Reviewed-by: Mike Reed <reed@google.com>
> Commit-Queue: Julia Lavrova <jlavrova@google.com>
TBR=reed@google.com,jlavrova@google.com
Change-Id: Idd4c41e22aa59e24bdbd07f2fa5e9258c1bbb7a7
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/303358
Reviewed-by: Julia Lavrova <jlavrova@google.com>
Commit-Queue: Julia Lavrova <jlavrova@google.com>
18 lines
564 B
Plaintext
18 lines
564 B
Plaintext
# Copyright 2019 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_shaper_public = [ "$_include/SkShaper.h" ]
|
|
|
|
skia_shaper_primitive_sources = [
|
|
"$_src/SkShaper.cpp",
|
|
"$_src/SkShaper_primitive.cpp",
|
|
]
|
|
skia_shaper_harfbuzz_sources = [ "$_src/SkShaper_harfbuzz.cpp" ]
|
|
skia_shaper_coretext_sources = [ "$_src/SkShaper_coretext.cpp" ]
|