a6d1e98b65
This reverts commit 8d639e1a42
.
Reason for revert: Build break
Original change's description:
> ICU API: only in SkParagraph, simplified.
>
> Change-Id: I4f7fbb233217cb3b7a171c91720c9c2289e28a5f
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/296128
> Commit-Queue: Julia Lavrova <jlavrova@google.com>
> Reviewed-by: Mike Reed <reed@google.com>
TBR=djsollen@google.com,bungeman@google.com,reed@google.com,jlavrova@google.com
Change-Id: If41d7ebaa081837bf2615b24d9035f37cdb76081
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/300712
Reviewed-by: Julia Lavrova <jlavrova@google.com>
Commit-Queue: Mike Klein <mtklein@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" ]
|