blob: cb2722b631fffa778e0f1db517f85cd0edee245d [file] [log] [blame]
# Copyright 2013 The Flutter 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("display_list") {
sources = [
"display_list.cc",
"display_list.h",
"display_list_builder.cc",
"display_list_builder.h",
"display_list_canvas_dispatcher.cc",
"display_list_canvas_dispatcher.h",
"display_list_canvas_recorder.cc",
"display_list_canvas_recorder.h",
"display_list_dispatcher.cc",
"display_list_dispatcher.h",
"display_list_flags.cc",
"display_list_flags.h",
"display_list_ops.cc",
"display_list_ops.h",
"display_list_utils.cc",
"display_list_utils.h",
"types.h",
]
public_deps = [
"//flutter/fml",
"//third_party/skia",
]
}
# Instead of creating a new test harness for display lists, the flow_unittests
# harness includes these in its own.
source_set("unittests") {
testonly = true
sources = [
"display_list_canvas_unittests.cc",
"display_list_unittests.cc",
]
deps = [
"//flutter/testing:testing_lib",
"//third_party/skia",
]
public_deps = [ ":display_list" ]
}