[go: nahoru, domu]

blob: 11f9fdac082b2a44e47664d623dc7d08b8747d51 [file] [log] [blame]
# Copyright 2017 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.
import("//cc/cc.gni")
cc_component("paint") {
output_name = "cc_paint"
sources = [
"clip_display_item.cc",
"clip_display_item.h",
"clip_path_display_item.cc",
"clip_path_display_item.h",
"compositing_display_item.cc",
"compositing_display_item.h",
"discardable_image_map.cc",
"discardable_image_map.h",
"display_item.h",
"display_item_list.cc",
"display_item_list.h",
"draw_image.cc",
"draw_image.h",
"drawing_display_item.cc",
"drawing_display_item.h",
"filter_display_item.cc",
"filter_display_item.h",
"float_clip_display_item.cc",
"float_clip_display_item.h",
"image_id.h",
"largest_display_item.cc",
"largest_display_item.h",
"paint_canvas.cc",
"paint_canvas.h",
"paint_export.h",
"paint_flags.cc",
"paint_flags.h",
"paint_image.cc",
"paint_image.h",
"paint_op_buffer.cc",
"paint_op_buffer.h",
"paint_record.cc",
"paint_record.h",
"paint_recorder.cc",
"paint_recorder.h",
"paint_shader.h",
"record_paint_canvas.cc",
"record_paint_canvas.h",
"skia_paint_canvas.cc",
"skia_paint_canvas.h",
"transform_display_item.cc",
"transform_display_item.h",
]
defines = [ "CC_PAINT_IMPLEMENTATION=1" ]
# cc/paint is intended to be a separate component from cc that can be
# included in Blink. This component should never publicly include
# anything that Blink core wouldn't include (e.g. base).
public_deps = [
"//cc/base",
"//cc/debug",
"//skia",
"//ui/gfx:color_space",
"//ui/gfx:geometry_skia",
"//ui/gfx/geometry",
]
deps = [
"//base",
]
}