This commit is contained in:
Mehmet Fidanboylu 2018-11-07 15:29:52 -08:00 committed by GitHub
parent 1c870b3ff5
commit e8d852bac0
10 changed files with 4 additions and 13 deletions

View File

@ -66,7 +66,6 @@ source_set("flow") {
"$flutter_root/fml",
"$flutter_root/synchronization",
"//third_party/skia",
"//third_party/skia:gpu",
]
if (is_fuchsia) {

View File

@ -108,8 +108,6 @@ source_set("ui") {
"//third_party/dart/runtime/bin:dart_io_api",
"//third_party/rapidjson",
"//third_party/skia",
"//third_party/skia:effects",
"//third_party/skia:gpu",
"//third_party/tonic",
]
if (is_fuchsia) {

View File

@ -400,7 +400,7 @@ sk_sp<SkImage> MultiFrameCodec::GetNextFrameImage(
SkCodec::Options options;
options.fFrameIndex = nextFrameIndex_;
const int requiredFrame = frameInfos_[nextFrameIndex_].fRequiredFrame;
if (requiredFrame != SkCodec::kNone) {
if (requiredFrame != SkCodec::kNoFrame) {
const SkBitmap* requiredBitmap =
frameBitmaps_[requiredFrame]->bitmap_.get();
if (requiredBitmap == nullptr) {

View File

@ -102,7 +102,6 @@ source_set("common") {
"$flutter_root/synchronization",
"//third_party/dart/runtime:dart_api",
"//third_party/skia",
"//third_party/skia:gpu",
]
public_deps = [

View File

@ -30,7 +30,7 @@ source_set("gpu_surface_gl") {
"$gpu_dir/gpu_surface_gl.h",
]
deps = gpu_common_deps + [ "//third_party/skia:gpu" ]
deps = gpu_common_deps + [ "//third_party/skia" ]
}
source_set("gpu_surface_vulkan") {
@ -40,7 +40,7 @@ source_set("gpu_surface_vulkan") {
]
deps = gpu_common_deps + [
"//third_party/skia:gpu",
"//third_party/skia",
"$flutter_root/vulkan",
]
}

View File

@ -61,7 +61,6 @@ shared_library("flutter_shell_native") {
"$flutter_root/runtime",
"$flutter_root/shell/common",
"//third_party/skia",
"//third_party/skia:gpu",
]
if (flutter_runtime_mode == "debug" ||
flutter_runtime_mode == "dynamic_profile" ||

View File

@ -109,7 +109,6 @@ shared_library("create_flutter_framework_dylib") {
"$flutter_root/shell/common",
"$flutter_root/shell/platform/darwin/common",
"//third_party/skia",
"//third_party/skia:gpu",
]
if (flutter_runtime_mode == "debug" ||
flutter_runtime_mode == "dynamic_profile" ||

View File

@ -39,7 +39,6 @@ source_set("embedder") {
"//third_party/dart/runtime:libdart_jit",
"//third_party/dart/runtime/bin:dart_io_api",
"//third_party/skia",
"//third_party/skia:gpu",
"//third_party/tonic",
]

View File

@ -113,7 +113,7 @@ source_set("txt") {
]
deps = [
"//third_party/skia:effects",
"//third_party/skia",
]
if (is_mac || is_ios) {

View File

@ -60,12 +60,10 @@ source_set("vulkan") {
deps = [
"$flutter_root/fml",
"//third_party/skia",
"//third_party/skia:gpu",
]
public_configs = [
":vulkan_config",
"$flutter_root:config",
"//third_party/skia:skia_private",
]
}