mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Previously we just dropped child scenes on the floor. Now we upload them to Mozart. However, we just draw them on top of all the other content and don't apply any clips or blends.
50 lines
1.3 KiB
Plaintext
50 lines
1.3 KiB
Plaintext
# Copyright 2015 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
source_set("flow") {
|
|
sources = [
|
|
"checkerboard.cc",
|
|
"checkerboard.h",
|
|
"instrumentation.cc",
|
|
"instrumentation.h",
|
|
"layers/child_scene_layer.cc",
|
|
"layers/child_scene_layer.h",
|
|
"layers/clip_path_layer.cc",
|
|
"layers/clip_path_layer.h",
|
|
"layers/clip_rect_layer.cc",
|
|
"layers/clip_rect_layer.h",
|
|
"layers/clip_rrect_layer.cc",
|
|
"layers/clip_rrect_layer.h",
|
|
"layers/color_filter_layer.cc",
|
|
"layers/color_filter_layer.h",
|
|
"layers/container_layer.cc",
|
|
"layers/container_layer.h",
|
|
"layers/layer.cc",
|
|
"layers/layer.h",
|
|
"layers/layer_tree.cc",
|
|
"layers/layer_tree.h",
|
|
"layers/opacity_layer.cc",
|
|
"layers/opacity_layer.h",
|
|
"layers/performance_overlay_layer.cc",
|
|
"layers/performance_overlay_layer.h",
|
|
"layers/picture_layer.cc",
|
|
"layers/picture_layer.h",
|
|
"layers/shader_mask_layer.cc",
|
|
"layers/shader_mask_layer.h",
|
|
"layers/transform_layer.cc",
|
|
"layers/transform_layer.h",
|
|
"paint_context.cc",
|
|
"paint_context.h",
|
|
"raster_cache.cc",
|
|
"raster_cache.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//mojo/services/gfx/composition/interfaces",
|
|
"//mojo/skia",
|
|
"//skia",
|
|
]
|
|
}
|