mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This patch improves script run itemization and also exposes metrics and bounds for layouts. In addition, there is a fair amount of internal cleanup, including ref counting, and making the MinikinFont abstraction strong enough to support both FreeType and Skia implementations. There is also a sample implementation using Skia, in the sample directory. As part of its functionality, his patch measures the bounds of the layout and gives access through Layout::GetBounds(). The corresponding method is not implemented in the FreeType-only implementation of MinikinFont, so that will probably have to be fixed. Change-Id: Ib1a3fe9d7c90519ac651fb4aa957848e4bb758ec
76 lines
1.6 KiB
Makefile
76 lines
1.6 KiB
Makefile
# Copyright (C) 2013 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
include external/stlport/libstlport.mk
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
external/harfbuzz_ng/src \
|
|
external/freetype/include \
|
|
external/icu4c/common \
|
|
frameworks/minikin/include
|
|
|
|
LOCAL_SRC_FILES:= example.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES += \
|
|
libutils \
|
|
liblog \
|
|
libcutils \
|
|
libstlport \
|
|
libharfbuzz_ng \
|
|
libicuuc \
|
|
libft2 \
|
|
libpng \
|
|
libz \
|
|
libminikin
|
|
|
|
LOCAL_MODULE:= minikin_example
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
include external/stlport/libstlport.mk
|
|
|
|
LOCAL_MODULE_TAG := tests
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
external/harfbuzz_ng/src \
|
|
external/freetype/include \
|
|
external/icu4c/common \
|
|
frameworks/minikin/include \
|
|
external/skia/src/core
|
|
|
|
LOCAL_SRC_FILES:= example_skia.cpp \
|
|
MinikinSkia.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES += \
|
|
libutils \
|
|
liblog \
|
|
libcutils \
|
|
libstlport \
|
|
libharfbuzz_ng \
|
|
libicuuc \
|
|
libskia \
|
|
libminikin \
|
|
libft2
|
|
|
|
LOCAL_MODULE:= minikin_skia_example
|
|
|
|
include $(BUILD_EXECUTABLE)
|